summaryrefslogtreecommitdiff
path: root/shairport.c
diff options
context:
space:
mode:
Diffstat (limited to 'shairport.c')
-rw-r--r--shairport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shairport.c b/shairport.c
index cc1a790..d458516 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