aboutsummaryrefslogtreecommitdiff
path: root/debianutils
diff options
context:
space:
mode:
authorPaul Fox <pgf@brightstareng.com>2005-07-29 14:58:09 +0000
committerPaul Fox <pgf@brightstareng.com>2005-07-29 14:58:09 +0000
commitbb9a0ad95ac7997bef6f15c19cf3e433c88cf61a (patch)
tree1a4427972c76159af188ca2eccac7d12b2c39437 /debianutils
parentb3b756dab3544a02da596f9f834da30ab59a5c8a (diff)
downloadbusybox-bb9a0ad95ac7997bef6f15c19cf3e433c88cf61a.tar.gz
commiting fix from:
0000353: [PATCH] start-stop-daemon -q is not quiet
Diffstat (limited to 'debianutils')
-rw-r--r--debianutils/start_stop_daemon.c3
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)
bb_show_usage();
}
+ if (opt & SSD_OPT_QUIET)
+ quiet = 1;
+
if (signame) {
signal_nr = bb_xgetlarg(signame, 10, 0, NSIG);
}