summaryrefslogtreecommitdiff
path: root/src/systemctl
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2015-11-11 01:17:13 +0000
committerEvgeny Vereshchagin <evvers@ya.ru>2015-11-11 01:17:13 +0000
commit6a32563caa883bd11da1b255c38358e481c42ad7 (patch)
tree836a6805f15b0872ef699ac1dc9979859c1c956d /src/systemctl
parent75fbd19388badbdd68f7e4e0ae0f723501629c86 (diff)
systemctl: return EXIT_SUCCESS on success
Diffstat (limited to 'src/systemctl')
-rw-r--r--src/systemctl/systemctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index 85deb4a761..d244389ddd 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -7815,5 +7815,5 @@ finish:
release_busses();
- return r < 0 ? EXIT_FAILURE : r;
+ return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}