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_1e~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=496681cd513a93e926c19b0be13fe1cc79ef9392;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 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;