diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-01-23 21:43:49 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-01-23 21:43:49 +0000 |
commit | 2d016a3715dee77d9832a16d1152f24c239c3e13 (patch) | |
tree | 516bb6978e61aa69d9f2e75fd02479cbaed582c7 | |
parent | 654a99b691a5c031ad06eeba7cc554128551c7de (diff) | |
download | busybox-w32-2d016a3715dee77d9832a16d1152f24c239c3e13.tar.gz busybox-w32-2d016a3715dee77d9832a16d1152f24c239c3e13.tar.bz2 busybox-w32-2d016a3715dee77d9832a16d1152f24c239c3e13.zip |
Correct check for only one of K or S 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 | ||