diff options
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c index dc6e47c..5261c10 100644 --- a/src/config.c +++ b/src/config.c @@ -756,7 +756,7 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[]) /* Print provider help if arg is `help'. */ if (settings->provider_args && !strcasecmp(settings->provider_args, "help")) { - settings->provider->print_help(stdout); + settings->provider->print_help(); exit(0); } break; @@ -782,7 +782,7 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[]) /* Print method help if arg is `help'. */ if (settings->method_args && !strcasecmp(settings->method_args, "help")) { - settings->method->print_help(stdout); + settings->method->print_help(); exit(0); } break; |