diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index 59d0efc036a12ab8a8cf74e930711e0e648ab0b6..173268c72735d2ed1275d5d4bfd5c38bbda583c0 100644 --- a/ssl/t1_trce.c +++ b/ssl/t1_trce.c @@ -1244,6 +1244,10 @@ static int ssl_print_cert_request(BIO *bio, int indent, const SSL *ssl, if (SSL_IS_TLS13(ssl)) { if (!ssl_print_hexbuf(bio, indent, "request_context", 1, &msg, &msglen)) return 0; + if (!ssl_print_extensions(bio, indent, 1, + SSL3_MT_CERTIFICATE_REQUEST, &msg, &msglen)) + return 0; + return 1; } else { if (msglen < 1) return 0;