projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
654a99b
)
Correct check for only one of K or S options
author
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 23 Jan 2004 21:43:49 +0000
(21:43 -0000)
committer
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 23 Jan 2004 21:43:49 +0000
(21:43 -0000)
debianutils/start_stop_daemon.c
patch
|
blob
|
history
diff --git
a/debianutils/start_stop_daemon.c
b/debianutils/start_stop_daemon.c
index 082fe60702605a58c02849da5c675461c7576e61..dfa33e1f9c18bf2517d578cfffba2fa3c650082f 100644
(file)
--- a/
debianutils/start_stop_daemon.c
+++ b/
debianutils/start_stop_daemon.c
@@
-204,13
+204,12
@@
start_stop_daemon_main(int argc, char **argv)
bb_applet_long_options = ssd_long_options;
- bb_opt_complementaly = "K~S";
+ bb_opt_complementaly = "K~S
:S~K
";
opt = bb_getopt_ulflags(argc, argv, "KSba:n:s:u:x:",
&startas, &cmdname, &signame, &userspec, &execname);
/* Check one and only one context option was given */
- if ((opt & 0x80000000UL) ||
- (opt & (SSD_CTX_STOP | SSD_CTX_START)) == 0) {
+ if ((opt & 0x80000000UL) || (opt & (SSD_CTX_STOP | SSD_CTX_START)) == 0) {
bb_show_usage();
}