diff --git a/src/lib66/exec/ssexec_signal.c b/src/lib66/exec/ssexec_signal.c index 5af6347fd1630d3b27c495d5e43ac4698121090a..3178d4c2b55dc7537ed0622bf0a8d296a2b9ac6c 100644 --- a/src/lib66/exec/ssexec_signal.c +++ b/src/lib66/exec/ssexec_signal.c @@ -249,7 +249,7 @@ int ssexec_signal(int argc, char const *const *argv, ssexec_t *info) * At stop process, just ignore it as it already down anyway */ if (aresid < 0) { if (what && data[1] != 'r' || data[1] != 'h') { - log_warn("service: ", *argv, " not available -- ignoring it?") ; + log_warn("service: ", *argv, " is already stopped or unsupervised -- ignoring it") ; continue ; } else { log_die(LOG_EXIT_USER, "service: ", *argv, " not available -- did you parse it?") ; diff --git a/src/lib66/exec/ssexec_stop.c b/src/lib66/exec/ssexec_stop.c index 36eba6f408d8d4f4ecebfcb6a78d873d3a5e0f8a..c9ec718e192d097aeae5dc5c2b0400625d7b8181 100644 --- a/src/lib66/exec/ssexec_stop.c +++ b/src/lib66/exec/ssexec_stop.c @@ -112,7 +112,7 @@ int ssexec_stop(int argc, char const *const *argv, ssexec_t *info) * * This the stop process, just ignore it as it already down anyway */ if (aresid < 0) { - log_warn("service: ", argv[n], " is already stopped or unsupervised -- ignoring it?") ; + log_warn("service: ", argv[n], " is already stopped or unsupervised -- ignoring it") ; continue ; } graph_compute_visit(argv[n], visit, list, &graph, &nservice, 1) ;