summaryrefslogtreecommitdiff
path: root/src/core/unit.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-05-06 22:28:39 +0200
committerLennart Poettering <lennart@poettering.net>2013-05-06 22:28:56 +0200
commitd956ac29a1b8120e83922fa8e75cdd8f6e562529 (patch)
tree74a14d2674828935970803dbc2a25587c3e1251e /src/core/unit.c
parentd686f034c3b9021e07faefe172ee660abd952871 (diff)
core: unit_inactive_or_pending() should actually do as it claims
Diffstat (limited to 'src/core/unit.c')
-rw-r--r--src/core/unit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/unit.c b/src/core/unit.c
index dc8bf8338..9b36b225f 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -2676,6 +2676,9 @@ bool unit_inactive_or_pending(Unit *u) {
/* Returns true if the unit is inactive or going down */
+ if (UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)))
+ return true;
+
if (unit_stop_pending(u))
return true;