systemctl: return EXIT_SUCCESS on success
authorEvgeny Vereshchagin <evvers@ya.ru>
Wed, 11 Nov 2015 01:17:13 +0000 (01:17 +0000)
committerEvgeny Vereshchagin <evvers@ya.ru>
Wed, 11 Nov 2015 01:17:13 +0000 (01:17 +0000)
src/systemctl/systemctl.c

index 85deb4a..d244389 100644 (file)
@@ -7815,5 +7815,5 @@ finish:
 
         release_busses();
 
-        return r < 0 ? EXIT_FAILURE : r;
+        return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
 }