diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-11 01:17:13 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-11 01:17:13 +0000 |
commit | 6a32563caa883bd11da1b255c38358e481c42ad7 (patch) | |
tree | 836a6805f15b0872ef699ac1dc9979859c1c956d | |
parent | 75fbd19388badbdd68f7e4e0ae0f723501629c86 (diff) |
systemctl: return EXIT_SUCCESS on success
-rw-r--r-- | src/systemctl/systemctl.c | 2 |
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; } |