summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2015-11-11 12:10:19 +0100
committerTom Gundersen <teg@jklm.no>2015-11-11 12:10:19 +0100
commit919ae5349f71c71189f9fe4b304b520bf8b1074d (patch)
tree6d30c3d46333fc3dedf9411d8858af067f2611d3
parent2d0246bbd268c96d6e44197901b387415a0d3b34 (diff)
parent9eb4a5012cbc23146078db7f5536ee3a68a249bb (diff)
Merge pull request #1845 from poettering/revert-EXIT_SUCCESS
Revert "systemctl: return EXIT_SUCCESS on success"
-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 7cbf9af991..0c42766a60 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -7709,5 +7709,5 @@ finish:
release_busses();
- return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
+ return r < 0 ? EXIT_FAILURE : r;
}