X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Ftarget.c;h=33fb66bc3fe4800617d521d53bac86c55bde964d;hb=63c372cb9df3bee01e3bf8cd7f96f336bddda846;hp=68be22b38df3acf149afc52ab8f78e7550392fc9;hpb=718db96199eb307751264e4163555662c9a389fa;p=elogind.git diff --git a/src/core/target.c b/src/core/target.c index 68be22b38..33fb66bc3 100644 --- a/src/core/target.c +++ b/src/core/target.c @@ -137,7 +137,7 @@ static int target_start(Unit *u) { assert(t->state == TARGET_DEAD); target_set_state(t, TARGET_ACTIVE); - return 0; + return 1; } static int target_stop(Unit *u) { @@ -147,7 +147,7 @@ static int target_stop(Unit *u) { assert(t->state == TARGET_ACTIVE); target_set_state(t, TARGET_DEAD); - return 0; + return 1; } static int target_serialize(Unit *u, FILE *f, FDSet *fds) {