summaryrefslogtreecommitdiff
path: root/src/core/busname.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-01-28 15:07:13 +0100
committerLennart Poettering <lennart@poettering.net>2015-01-28 15:07:13 +0100
commit82a2b6bb5e4e5d294f09af778c48974a7857afb6 (patch)
tree37d7926f1c1e575d8e1344890953ca6a0114a011 /src/core/busname.c
parent3ad85e3775d018f32098a2957ce25e1f53440da1 (diff)
core: output unit status output strings to console, only if we actually are changing unit state
Unit _start() and _stop() implementations can fail with -EAGAIN to delay execution temporarily. Thus, we should not output status messages before invoking these calls, but after, and only when we know that the invocation actually made a change.
Diffstat (limited to 'src/core/busname.c')
-rw-r--r--src/core/busname.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/busname.c b/src/core/busname.c
index 00e56686e..ca9ceb8c3 100644
--- a/src/core/busname.c
+++ b/src/core/busname.c
@@ -615,7 +615,7 @@ static int busname_start(Unit *u) {
n->result = BUSNAME_SUCCESS;
busname_enter_making(n);
- return 0;
+ return 1;
}
static int busname_stop(Unit *u) {
@@ -638,7 +638,7 @@ static int busname_stop(Unit *u) {
assert(IN_SET(n->state, BUSNAME_REGISTERED, BUSNAME_LISTENING, BUSNAME_RUNNING));
busname_enter_dead(n, BUSNAME_SUCCESS);
- return 0;
+ return 1;
}
static int busname_serialize(Unit *u, FILE *f, FDSet *fds) {