commit cf4c51e8eef85090dae597c97508b0947400671e
parent 6375a9a0d444f732823386cb9e364028bfab54c9
Author: leitner <leitner>
Date: Thu, 31 Mar 2005 17:55:20 +0000
Don't send signal to already terminated process, because minit uses 1 to
signal that condition, and msvc then killed minit itself. Found by Paul
Fox.
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/msvc.c b/msvc.c
@@ -311,6 +311,9 @@ dokill:
if (!pid) {
carp(argv[i],": no such service");
ret=1;
+ } else if (pid==1) {
+ carp(argv[i],": service not running");
+ ret=1;
} else if (kill(pid,sig)) {
char tmp[FMT_ULONG];
char tmp2[FMT_ULONG];