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-pre-reformat~1427 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eef6935426d2062d33cbe5ab0927db9e3195de65;p=thirdparty%2Fopenssl.git Remove extraneous brackets (clang doesn't like them). --- diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index ff25151b32d..1d2615bde1a 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;