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>
Fri, 8 Feb 2013 00:17:43 +0000 (16:17 -0800)
ssl/t1_lib.c

index 27010dd50de5e3154bb3876fc4932a60129e727a..eaa423a8ab76df0c3f740380f7b1eb9e03992373 100644 (file)
@@ -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;