diff options
author | 2015-10-25 15:52:49 +0000 | |
---|---|---|
committer | 2015-10-25 15:52:49 +0000 | |
commit | c684af8a8d2ea0721d197b9f1fb732cb93f6d62b (patch) | |
tree | 22a95d724a15a376649010706b7964b522e09107 /lib/libssl/ssl_lib.c | |
parent | Simplify ssl23_get_client_hello error handling. (diff) | |
download | wireguard-openbsd-c684af8a8d2ea0721d197b9f1fb732cb93f6d62b.tar.xz wireguard-openbsd-c684af8a8d2ea0721d197b9f1fb732cb93f6d62b.zip |
Remove last vestige of SSL_OP_NO_SSLv3 support.
No part of LibreSSL checks for this flag any longer.
ok jsing@
Diffstat (limited to 'lib/libssl/ssl_lib.c')
-rw-r--r-- | lib/libssl/ssl_lib.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libssl/ssl_lib.c b/lib/libssl/ssl_lib.c index d37f305387c..5b9b952e720 100644 --- a/lib/libssl/ssl_lib.c +++ b/lib/libssl/ssl_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_lib.c,v 1.115 2015/10/19 17:59:39 beck Exp $ */ +/* $OpenBSD: ssl_lib.c,v 1.116 2015/10/25 15:52:49 doug Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1900,9 +1900,6 @@ SSL_CTX_new(const SSL_METHOD *meth) */ ret->options |= SSL_OP_LEGACY_SERVER_CONNECT; - /* Disable SSLv3 by default. */ - ret->options |= SSL_OP_NO_SSLv3; - return (ret); err: SSLerr(SSL_F_SSL_CTX_NEW, ERR_R_MALLOC_FAILURE); |