projects
/
platform
/
upstream
/
systemd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75fbd19
)
systemctl: return EXIT_SUCCESS on success
author
Evgeny Vereshchagin
<evvers@ya.ru>
Wed, 11 Nov 2015 01:17:13 +0000
(
01:17
+0000)
committer
Evgeny Vereshchagin
<evvers@ya.ru>
Wed, 11 Nov 2015 01:17:13 +0000
(
01:17
+0000)
src/systemctl/systemctl.c
patch
|
blob
|
history
diff --git
a/src/systemctl/systemctl.c
b/src/systemctl/systemctl.c
index
85deb4a
..
d244389
100644
(file)
--- 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
;
}