diff options
Diffstat (limited to 'src/rc/runscript.c')
-rw-r--r-- | src/rc/runscript.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c index b0d6fca8..9263cea1 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -559,7 +559,7 @@ static RC_SERVICE svc_status(void) snprintf(status, sizeof(status), "inactive"); e = &ewarn; } else if (state & RC_SERVICE_STARTED) { - if (rc_service_daemons_crashed(service)) { + if (_rc_findpid1() && rc_service_daemons_crashed(service)) { snprintf(status, sizeof (status), "crashed"); e = &eerror; } else |