diff options
author | Paul Fox <pgf@brightstareng.com> | 2005-07-29 14:58:09 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2005-07-29 14:58:09 +0000 |
commit | bb9a0ad95ac7997bef6f15c19cf3e433c88cf61a (patch) | |
tree | 1a4427972c76159af188ca2eccac7d12b2c39437 | |
parent | b3b756dab3544a02da596f9f834da30ab59a5c8a (diff) | |
download | busybox-w32-bb9a0ad95ac7997bef6f15c19cf3e433c88cf61a.tar.gz busybox-w32-bb9a0ad95ac7997bef6f15c19cf3e433c88cf61a.tar.bz2 busybox-w32-bb9a0ad95ac7997bef6f15c19cf3e433c88cf61a.zip |
commiting fix from:
0000353: [PATCH] start-stop-daemon -q is not quiet
-rw-r--r-- | debianutils/start_stop_daemon.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index 1eaf0d78c..03f49165c 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c | |||
@@ -242,6 +242,9 @@ start_stop_daemon_main(int argc, char **argv) | |||
242 | bb_show_usage(); | 242 | bb_show_usage(); |
243 | } | 243 | } |
244 | 244 | ||
245 | if (opt & SSD_OPT_QUIET) | ||
246 | quiet = 1; | ||
247 | |||
245 | if (signame) { | 248 | if (signame) { |
246 | signal_nr = bb_xgetlarg(signame, 10, 0, NSIG); | 249 | signal_nr = bb_xgetlarg(signame, 10, 0, NSIG); |
247 | } | 250 | } |