summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-01-19 15:12:08 +0000
committerBen Laurie <ben@links.org>2013-02-07 16:17:43 -0800
commit496681cd513a93e926c19b0be13fe1cc79ef9392 (patch)
tree59ee221494d967780d9b9a90b450f88a9e41c1ab
parent746c6f3a533b1eb50b909147b35fa1b0e5c61f59 (diff)
downloadopenssl-new-496681cd513a93e926c19b0be13fe1cc79ef9392.tar.gz
Remove extraneous brackets (clang doesn't like them).
-rw-r--r--ssl/t1_lib.c2
1 files changed, 1 insertions, 1 deletions
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;