mirror of
https://github.com/openssl/openssl.git
synced 2024-12-13 12:03:48 +08:00
Remove extraneous parens
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
fe3a329117
commit
c874def60a
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user