From: Henrik Nilsson Date: Thu, 1 Aug 2019 07:59:17 +0000 (+0200) Subject: Return success on version and help argument X-Git-Tag: 3.3.3~2^2~54^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F887%2Fhead;p=thirdparty%2Fshairport-sync.git Return success on version and help argument It's not a failure to print version or usage, so use return code success. --- diff --git a/shairport.c b/shairport.c index cc1a790f..d458516d 100644 --- a/shairport.c +++ b/shairport.c @@ -1366,13 +1366,13 @@ int main(int argc, char **argv) { /* Check if we are called with -V or --version parameter */ if (argc >= 2 && ((strcmp(argv[1], "-V") == 0) || (strcmp(argv[1], "--version") == 0))) { print_version(); - exit(EXIT_FAILURE); + exit(EXIT_SUCCESS); } /* Check if we are called with -h or --help parameter */ if (argc >= 2 && ((strcmp(argv[1], "-h") == 0) || (strcmp(argv[1], "--help") == 0))) { usage(argv[0]); - exit(EXIT_FAILURE); + exit(EXIT_SUCCESS); } #ifdef CONFIG_LIBDAEMON