Remove extraneous brackets (clang doesn't like them).
This commit is contained in:
parent
17cf9864e0
commit
92745f8116
1 changed files with 1 additions and 1 deletions
|
@ -2449,7 +2449,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;
|
||||
|
|
Loading…
Reference in a new issue