diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-27 05:32:31 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-27 05:32:31 +0100 |
commit | bd982a8baeabbaf4a09a382a64acc243ef7104c5 (patch) | |
tree | a24424aef6ff3da2bef3e02ff434a6a5d58a834f /socket.c | |
parent | 6632c6023c5f90e15440231500d3431e869e4577 (diff) |
properly recognize successfull scripts
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -626,7 +626,7 @@ static void socket_sigchld_event(Unit *u, pid_t pid, int code, int status) { assert(s); assert(pid >= 0); - success = code == CLD_EXITED || status == 0; + success = code == CLD_EXITED && status == 0; s->failure = s->failure || !success; assert(s->control_pid == pid); @@ -645,7 +645,7 @@ static void socket_sigchld_event(Unit *u, pid_t pid, int code, int status) { /* No further commands for this step, so let's figure * out what to do next */ - log_debug("%s finished with state %s", unit_id(u), state_string_table[s->state]); + log_debug("%s got final SIGCHLD for state %s", unit_id(u), state_string_table[s->state]); switch (s->state) { |