diff options
-rw-r--r-- | debianutils/start_stop_daemon.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index 082fe6070..dfa33e1f9 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c | |||
@@ -204,13 +204,12 @@ start_stop_daemon_main(int argc, char **argv) | |||
204 | 204 | ||
205 | bb_applet_long_options = ssd_long_options; | 205 | bb_applet_long_options = ssd_long_options; |
206 | 206 | ||
207 | bb_opt_complementaly = "K~S"; | 207 | bb_opt_complementaly = "K~S:S~K"; |
208 | opt = bb_getopt_ulflags(argc, argv, "KSba:n:s:u:x:", | 208 | opt = bb_getopt_ulflags(argc, argv, "KSba:n:s:u:x:", |
209 | &startas, &cmdname, &signame, &userspec, &execname); | 209 | &startas, &cmdname, &signame, &userspec, &execname); |
210 | 210 | ||
211 | /* Check one and only one context option was given */ | 211 | /* Check one and only one context option was given */ |
212 | if ((opt & 0x80000000UL) || | 212 | if ((opt & 0x80000000UL) || (opt & (SSD_CTX_STOP | SSD_CTX_START)) == 0) { |
213 | (opt & (SSD_CTX_STOP | SSD_CTX_START)) == 0) { | ||
214 | bb_show_usage(); | 213 | bb_show_usage(); |
215 | } | 214 | } |
216 | 215 | ||