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: OpenSSL_1_0_2-beta1~450 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92745f8116a45aaf15018dad49cf663ea76fa56a;p=openssl Remove extraneous brackets (clang doesn't like them). --- diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 530b1b97ef..9daf9c706e 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -2449,7 +2449,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;