summaryrefslogtreecommitdiffstats
path: root/ssl/s3_lib.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-04-30 13:49:25 +0100
committerMatt Caswell <matt@openssl.org>2019-05-01 14:51:51 +0100
commite8fb288cc5057bb198a7f1c6e46f3b64b5d7a476 (patch)
tree94f44cdb16145ff8906635a7c0dccd11e886bcb2 /ssl/s3_lib.c
parent1ccf49737c89cf1b37cfb0de2370f62ef136062e (diff)
Fix no-srp
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8850)
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r--ssl/s3_lib.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 4ed9894d52..5ea2c2d029 100644
--- 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)