projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe3a329
)
Remove extraneous parens
author
Matt Caswell
<matt@openssl.org>
Mon, 5 Oct 2015 09:41:13 +0000
(10:41 +0100)
committer
Matt Caswell
<matt@openssl.org>
Fri, 30 Oct 2015 08:39:46 +0000
(08:39 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
ssl/s3_lib.c
patch
|
blob
|
history
diff --git
a/ssl/s3_lib.c
b/ssl/s3_lib.c
index dca9fbfe61054947ced22f05acaeaec8d7cc1e1d..211247504b9837a72a8256dbae616836fa2a3894 100644
(file)
--- 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);
}