Remove extraneous brackets (clang doesn't like them).

This commit is contained in:
Ben Laurie 2013-01-19 15:12:08 +00:00
parent 517dd307f9
commit eef6935426

View 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;