From b7a8550988cfd67c9a8452d3f0a49dcf125fdb5b Mon Sep 17 00:00:00 2001 From: Kaspar Brand Date: Thu, 16 Jan 2014 13:46:31 +0000 Subject: [PATCH] Omit initial status request callback check. PR#3178 (cherry picked from commit d0b039d4a3a19b106cc2cb938125b86aca4974aa) --- ssl/t1_lib.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 245bca2fe1..05c66825f2 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -2374,8 +2374,7 @@ static int ssl_scan_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char return 0; } } - else if (type == TLSEXT_TYPE_status_request - && s->ctx->tlsext_status_cb) + else if (type == TLSEXT_TYPE_status_request) { if (size < 5) -- 2.34.1