diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2014-08-08 10:34:34 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2014-08-08 10:34:34 +0200 |
commit | fbce53502a46003a5aca2840dd1ed4961927048d (patch) | |
tree | c426533525ce0dd4f81c68f7f6f78cbc7a1bff6b /src | |
parent | 3b82b93943e3bd1e3c0fab945fefa6cf59bfbcd0 (diff) | |
download | gnutls-fbce53502a46003a5aca2840dd1ed4961927048d.tar.gz |
p11tool: only print the debugging message in debuglevel > 4
Diffstat (limited to 'src')
-rw-r--r-- | src/p11tool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p11tool.c b/src/p11tool.c index 93fe15153f..80a4eaaca5 100644 --- a/src/p11tool.c +++ b/src/p11tool.c @@ -222,7 +222,7 @@ static void cmd_parser(int argc, char **argv) sec_param = OPT_ARG(SEC_PARAM); } - if (debug > 0) { + if (debug > 4) { if (HAVE_OPT(MARK_PRIVATE)) fprintf(stderr, "Private: %s\n", ENABLED_OPT(MARK_PRIVATE) ? "yes" : "no"); |