]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - recv.c
Don't check return value of command line parsers unnecessarily.
[paraslash.git] / recv.c
diff --git a/recv.c b/recv.c
index 1fb5e25e700ea6bb6b2975fef7d6a34523b8cd9f..b03c5714b23b23c305b5b0e1114ea5326cd1f841 100644 (file)
--- a/recv.c
+++ b/recv.c
@@ -54,8 +54,7 @@ __noreturn static void print_help_and_die(void)
 
 static void *parse_config(int argc, char *argv[], int *receiver_num)
 {
-       if (recv_cmdline_parser(argc, argv, &conf))
-               return NULL;
+       recv_cmdline_parser(argc, argv, &conf);
        HANDLE_VERSION_FLAG("recv", conf);
        if (conf.help_given || conf.detailed_help_given)
                print_help_and_die();