diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-24 03:00:55 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-24 03:00:55 +0000 |
commit | 20fc6050b549a8e7c824c396fe01bb46783ed5e7 (patch) | |
tree | f54eceaeacc3d51981855abc6241a143c475568a | |
parent | f9481002f3d99038177acbf0592f64968c6dd4a9 (diff) |
There is no point returning then breaking...
-rw-r--r-- | lib/libssl/s3_lib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libssl/s3_lib.c b/lib/libssl/s3_lib.c index 18a4cb64e8d..1b0ddc702fb 100644 --- a/lib/libssl/s3_lib.c +++ b/lib/libssl/s3_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_lib.c,v 1.128 2017/01/23 14:35:42 jsing Exp $ */ +/* $OpenBSD: s3_lib.c,v 1.129 2017/01/24 03:00:54 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -2296,7 +2296,6 @@ ssl3_ctx_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg) case SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB_ARG: ctx->internal->tlsext_status_arg = parg; return 1; - break; case SSL_CTRL_SET_ECDH_AUTO: ctx->internal->cert->ecdh_tmp_auto = larg; |