From 098263950fdab0e9bce2b68c1b0ed212528de8a5 Mon Sep 17 00:00:00 2001 From: HansH111 Date: Sat, 19 Mar 2022 08:55:31 +0000 Subject: [PATCH] increase verboseness by allowing multiple -v --- cli-runopts.c | 4 ++-- 1 file 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':