diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c index cceb0410..cc47c0b2 100644 --- a/src/rc/start-stop-daemon.c +++ b/src/rc/start-stop-daemon.c @@ -452,7 +452,7 @@ run_stop_schedule(const char *exec, const char *const *argv, nloops++) { if ((nrunning = do_stop(exec, argv, - pid, uid, 0, true)) == 0) + pid, uid, 0, test)) == 0) return 0; @@ -1075,7 +1075,7 @@ start_stop_daemon(int argc, char **argv) pid = 0; if (do_stop(exec, (const char * const *)margv, pid, uid, - 0, true) > 0) + 0, test) > 0) eerrorx("%s: %s is already running", applet, exec); if (test) { @@ -1352,7 +1352,7 @@ start_stop_daemon(int argc, char **argv) } else pid = 0; if (do_stop(exec, (const char *const *)margv, - pid, uid, 0, true) > 0) + pid, uid, 0, test) > 0) alive = true; }