diff options
| author | William Hubbs <w.d.hubbs@gmail.com> | 2013-08-26 17:09:18 -0500 | 
|---|---|---|
| committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-08-26 17:09:18 -0500 | 
| commit | 5c3e5d801b7ea536f6ea4a993076965c978f0e81 (patch) | |
| tree | ef5e330c0b612e8efa3e712e344e585f0f87c2c3 /src/rc | |
| parent | bb8a9c087d20ee6454e2b6bf4713ec0ce9db94f3 (diff) | |
| download | openrc-5c3e5d801b7ea536f6ea4a993076965c978f0e81.tar.xz | |
start-stop-daemon: remove redundant test of the quiet value
The einfo() function tests for the EINFO_QUIET environment variable
directly, and this is the variable that is set by the --quiet flag, so
there was no reason for this test to exist.
Diffstat (limited to 'src/rc')
| -rw-r--r-- | src/rc/start-stop-daemon.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c index 4b9fcdd0..ca40da6e 100644 --- a/src/rc/start-stop-daemon.c +++ b/src/rc/start-stop-daemon.c @@ -355,8 +355,7 @@ do_stop(const char *exec, const char *const *argv,  	LIST_FOREACH_SAFE(pi, pids, entries, np) {  		if (test) { -			if (!quiet) -				einfo("Would send signal %d to PID %d", sig, pi->pid); +			einfo("Would send signal %d to PID %d", sig, pi->pid);  			nkilled++;  		} else {  			if (verbose) | 
