[tor-commits] [tor/master] Fix error message in do_dump_config().
nickm at torproject.org
nickm at torproject.org
Tue Apr 7 18:10:21 UTC 2015
commit ad54c197a97ba71129a8d223c1dae665e19b9d8f
Author: rl1987 <rl1987 at sdf.lonestar.org>
Date: Mon Apr 6 21:01:43 2015 +0300
Fix error message in do_dump_config().
---
src/or/main.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/or/main.c b/src/or/main.c
index a816fad..c0ca158 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -2803,6 +2803,7 @@ do_dump_config(void)
const char *arg = options->command_arg;
int how;
char *opts;
+
if (!strcmp(arg, "short")) {
how = OPTIONS_DUMP_MINIMAL;
} else if (!strcmp(arg, "non-builtin")) {
@@ -2810,8 +2811,9 @@ do_dump_config(void)
} else if (!strcmp(arg, "full")) {
how = OPTIONS_DUMP_ALL;
} else {
- fprintf(stderr, "%s is not a recognized argument to --dump-config. "
- "Please select 'short', 'non-builtin', or 'full'", arg);
+ fprintf(stderr, "No recognizable option to --dump-config found!\n");
+ fprintf(stderr, "Please select 'short', 'non-builtin', or 'full'.\n");
+
return -1;
}
More information about the tor-commits
mailing list