From: Evgeny Vereshchagin Date: Wed, 11 Nov 2015 01:17:13 +0000 (+0000) Subject: systemctl: return EXIT_SUCCESS on success X-Git-Tag: v228~60^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1839%2Fhead;p=thirdparty%2Fsystemd.git systemctl: return EXIT_SUCCESS on success --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 85deb4a7616..d244389ddd8 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; }