Remove extraneous brackets (clang doesn't like them).
authorBen Laurie <ben@links.org>
Sat, 19 Jan 2013 15:12:08 +0000 (15:12 +0000)
committerBen Laurie <ben@links.org>
Sat, 19 Jan 2013 15:12:08 +0000 (15:12 +0000)
ssl/t1_lib.c

index ff25151b32dd1ef1e51c006455f97113b34630aa..1d2615bde1a47bbb1e918e9977a466c88e3220a2 100644 (file)
@@ -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;