From 14de9e27ab863ef0381fb84d4cb269e4c1d90d79 Mon Sep 17 00:00:00 2001 From: Henrik Nilsson Date: Thu, 1 Aug 2019 09:59:17 +0200 Subject: [PATCH] Return success on version and help argument It's not a failure to print version or usage, so use return code success. --- shairport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2