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:
1ccf497
)
Fix no-srp
author
Matt Caswell
<matt@openssl.org>
Tue, 30 Apr 2019 12:49:25 +0000
(13:49 +0100)
committer
Matt Caswell
<matt@openssl.org>
Wed, 1 May 2019 13:51:51 +0000
(14:51 +0100)
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8850)
ssl/s3_lib.c
patch
|
blob
|
history
diff --git
a/ssl/s3_lib.c
b/ssl/s3_lib.c
index 4ed9894d521f147f64cb7235791055884edc3508..5ea2c2d029c696f64f669beaf91818a6e37be47c 100644
(file)
--- a/
ssl/s3_lib.c
+++ b/
ssl/s3_lib.c
@@
-3292,18
+3292,15
@@
int ssl3_handshake_write(SSL *s)
int ssl3_new(SSL *s)
{
-
#ifndef OPENSSL_NO_SRP
if (!SSL_SRP_CTX_init(s))
-
goto err
;
+
return 0
;
#endif
if (!s->method->ssl_clear(s))
return 0;
return 1;
- err:
- return 0;
}
void ssl3_free(SSL *s)