From: Matt Caswell Date: Mon, 5 Oct 2015 09:41:13 +0000 (+0100) Subject: Remove extraneous parens X-Git-Tag: OpenSSL_1_1_0-pre1~348 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=c874def60a756df57d1069f48852632a0690f856 Remove extraneous parens Reviewed-by: Tim Hudson Reviewed-by: Richard Levitte --- diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index dca9fbfe61..211247504b 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -5014,7 +5014,7 @@ int ssl3_shutdown(SSL *s) * Don't do anything much if we have not done the handshake or we don't * want to send messages :-) */ - if ((s->quiet_shutdown) || (SSL_in_before(s))) { + if (s->quiet_shutdown || SSL_in_before(s)) { s->shutdown = (SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN); return (1); }