locking.c: Use shell convention to report child killed by a signal.
[misc] / locking.c
index b358a59..e7acb6c 100644 (file)
--- a/locking.c
+++ b/locking.c
@@ -214,7 +214,7 @@ doneopts:
   fcntl(fd, F_SETLK, &l);
   close(fd);
   if (WIFEXITED(rc)) exit(WEXITSTATUS(rc));
-  else exit(255);
+  else exit(128 + WTERMSIG(rc));
 }
 
 /*----- That's all, folks -------------------------------------------------*/