diff options
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/start-stop-daemon.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c index de5bd1dc..fd281a1d 100644 --- a/src/rc/start-stop-daemon.c +++ b/src/rc/start-stop-daemon.c @@ -371,7 +371,7 @@ static int run_stop_schedule(const char *exec, const char *const *argv, if (verbose) { if (exec) - einfo ("Will stop %s\n", exec); + einfo ("Will stop %s", exec); if (pidfile) einfo("Will stop PID in pidfile `%s'", pidfile); if (uid) @@ -781,14 +781,15 @@ int start_stop_daemon(int argc, char **argv) if (!exec) { exec = *argv; - if (name) + if (!exec) + exec = name; + if (name && start) *argv = name; - } else if (name) + } else if (name && (start || **argv)) *--argv = name; else *--argv = exec; - if (start && !exec) eerrorx("%s: nothing to start", applet); |