From 496681cd513a93e926c19b0be13fe1cc79ef9392 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 27010dd50d..eaa423a8ab 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -1529,7 +1529,7 @@ int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char *d, in 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.25.1