From eef6935426d2062d33cbe5ab0927db9e3195de65 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 19 Jan 2013 15:12:08 +0000 Subject: [PATCH] Remove extraneous brackets (clang doesn't like them). --- ssl/t1_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index ff25151b32..1d2615bde1 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -2451,7 +2451,7 @@ static int ssl_scan_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char unsigned char selected_len; /* We must have requested it. */ - if ((s->ctx->next_proto_select_cb == NULL)) + if (s->ctx->next_proto_select_cb == NULL) { *al = TLS1_AD_UNSUPPORTED_EXTENSION; return 0; -- 2.34.1