From: Ben Laurie Date: Sat, 19 Jan 2013 15:12:08 +0000 (+0000) Subject: Remove extraneous brackets (clang doesn't like them). X-Git-Tag: master-post-reformat~1480 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=eef6935426d2062d33cbe5ab0927db9e3195de65;p=oweals%2Fopenssl.git Remove extraneous brackets (clang doesn't like them). --- 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;