diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2015-04-06 21:36:55 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-04-07 14:09:41 -0400 |
commit | e89c200c47fdb6253ee99d3603e86a8f1bdbab8c (patch) | |
tree | 269d900fc8988a695d6dfeae43dc2a35da356e57 /src/or/main.c | |
parent | ad54c197a97ba71129a8d223c1dae665e19b9d8f (diff) | |
download | tor-e89c200c47fdb6253ee99d3603e86a8f1bdbab8c.tar.gz tor-e89c200c47fdb6253ee99d3603e86a8f1bdbab8c.zip |
Print the error message for --dump-config even if no arguments are given.
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index c0ca1584a3..a3da148023 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2811,7 +2811,7 @@ do_dump_config(void) } else if (!strcmp(arg, "full")) { how = OPTIONS_DUMP_ALL; } else { - fprintf(stderr, "No recognizable option to --dump-config found!\n"); + fprintf(stderr, "No valid argument to --dump-config found!\n"); fprintf(stderr, "Please select 'short', 'non-builtin', or 'full'.\n"); return -1; |