summaryrefslogtreecommitdiff
path: root/src/cli.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-01-19 15:32:09 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-01-19 15:32:09 +0100
commit9c33d9cc68458b5378f0d87e6d296fb07ada770c (patch)
tree63e9ebadeb3702bedaa739f15c68cb59e60b9678 /src/cli.c
parent5250d7558f7654b039aa4a502b662b6f2025bb9a (diff)
downloadgnutls-9c33d9cc68458b5378f0d87e6d296fb07ada770c.tar.gz
don't be so verbose about the OCSP nonce; it is universally unsupported
Diffstat (limited to 'src/cli.c')
-rw-r--r--src/cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.c b/src/cli.c
index e02080d302..998a1190ab 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -1880,7 +1880,7 @@ static int cert_verify_ocsp(gnutls_session_t session)
}
/* verify and check the response for revoked cert */
- ret = check_ocsp_response(cert, issuer, &resp, &nonce);
+ ret = check_ocsp_response(cert, issuer, &resp, &nonce, verbose);
if (ret == 1)
ok++;
else