From 0707741532b6f5f6c03a6016bd41cbc7f9e2cc7a Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 15 Feb 2016 15:43:28 +0000 Subject: [PATCH] Fix erroneous fall thgrough in switch statement Fix an erroenous fall through when setting the max_pipelines value. Reviewed-by: Tim Hudson --- ssl/ssl_lib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 89d228600c..13f4ccdc4a 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -1716,6 +1716,7 @@ long SSL_ctrl(SSL *s, int cmd, long larg, void *parg) s->max_pipelines = larg; if (larg > 1) RECORD_LAYER_set_read_ahead(&s->rlayer, 1); + return 1; case SSL_CTRL_GET_RI_SUPPORT: if (s->s3) return s->s3->send_connection_binding; @@ -1867,6 +1868,7 @@ long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg) if (larg < 1 || larg > SSL_MAX_PIPELINES) return 0; ctx->max_pipelines = larg; + return 1; case SSL_CTRL_CERT_FLAGS: return (ctx->cert->cert_flags |= larg); case SSL_CTRL_CLEAR_CERT_FLAGS: -- 2.34.1