summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHansH111 <hans@atbas.org>2022-03-19 08:55:31 +0000
committerHansH111 <hans@atbas.org>2022-03-19 08:55:31 +0000
commit182e1c3b1aae60e8ff1721a8d979f3e76f306baa (patch)
tree744bc00513427c218f98999200feddcaf9a23fdd
parentf1e0537e1c8103da62f9fc44bff7690625b78729 (diff)
downloaddropbear-182e1c3b1aae60e8ff1721a8d979f3e76f306baa.tar.gz
increase verboseness by allowing multiple -v
-rw-r--r--cli-runopts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli-runopts.c b/cli-runopts.c
index cbd15b3..c91f668 100644
--- a/cli-runopts.c
+++ b/cli-runopts.c
@@ -96,7 +96,7 @@ static void printhelp() {
"-b [bind_address][:bind_port]\n"
"-V Version\n"
#if DEBUG_TRACE
- "-v verbose (compiled with DEBUG_TRACE)\n"
+ "-v verbose (repeat for more verbose)\n"
#endif
,DROPBEAR_VERSION, cli_opts.progname,
#if DROPBEAR_CLI_PUBKEY_AUTH
@@ -302,7 +302,7 @@ void cli_getopts(int argc, char ** argv) {
#endif
#if DEBUG_TRACE
case 'v':
- debug_trace = 1;
+ debug_trace++;
break;
#endif
case 'F':