diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-12 23:14:42 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-12 23:14:42 +0000 |
commit | d55a36255d003c7093de67b615607f1ebb850838 (patch) | |
tree | e83648191d52c4de8156ce2c3ad1b35144ccfb15 /runit/sv.c | |
parent | b5c33b10b9f4019757833538c82f64bd49c00f38 (diff) | |
download | busybox-w32-d55a36255d003c7093de67b615607f1ebb850838.tar.gz busybox-w32-d55a36255d003c7093de67b615607f1ebb850838.tar.bz2 busybox-w32-d55a36255d003c7093de67b615607f1ebb850838.zip |
sv: make code trivially smaller
Diffstat (limited to '')
-rw-r--r-- | runit/sv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runit/sv.c b/runit/sv.c index 7635330e4..ac23a2da3 100644 --- a/runit/sv.c +++ b/runit/sv.c | |||
@@ -117,13 +117,13 @@ static unsigned svstatus_print(const char *m) | |||
117 | printf("%lds", (diff < 0 ? 0L : diff)); | 117 | printf("%lds", (diff < 0 ? 0L : diff)); |
118 | if (pid) { | 118 | if (pid) { |
119 | if (!normallyup) printf(", normally down"); | 119 | if (!normallyup) printf(", normally down"); |
120 | if (svstatus[16]) printf(", paused"); | ||
121 | if (svstatus[17] == 'd') printf(", want down"); | ||
122 | if (svstatus[18]) printf(", got TERM"); | ||
120 | } else { | 123 | } else { |
121 | if (normallyup) printf(", normally up"); | 124 | if (normallyup) printf(", normally up"); |
125 | if (svstatus[17] == 'u') printf(", want up"); | ||
122 | } | 126 | } |
123 | if (pid && svstatus[16]) printf(", paused"); | ||
124 | if (!pid && (svstatus[17] == 'u')) printf(", want up"); | ||
125 | if (pid && (svstatus[17] == 'd')) printf(", want down"); | ||
126 | if (pid && svstatus[18]) printf(", got TERM"); | ||
127 | return pid ? 1 : 2; | 127 | return pid ? 1 : 2; |
128 | } | 128 | } |
129 | 129 | ||