diff options
author | 2015-08-27 06:21:15 +0000 | |
---|---|---|
committer | 2015-08-27 06:21:15 +0000 | |
commit | ad8a4f4defc760164e2271b0a43a8d6331a93eaa (patch) | |
tree | 8dde52e8d47e15300a875fc3b4082d02fa829386 /lib/libssl/ssl_sess.c | |
parent | simple sizes for free() (diff) | |
download | wireguard-openbsd-ad8a4f4defc760164e2271b0a43a8d6331a93eaa.tar.xz wireguard-openbsd-ad8a4f4defc760164e2271b0a43a8d6331a93eaa.zip |
Remove SSLv3 support from LibreSSL.
This is the first wave of SSLv3 removal which removes the main SSLv3
functions. Future commits will remove the rest of the SSLv3 support.
Discussed the plan at c2k15. Input from jsing@, beck@, miod@, bcook@,
sthen@, naddy@, and deraadt@.
ok jsing@, beck@
Diffstat (limited to 'lib/libssl/ssl_sess.c')
-rw-r--r-- | lib/libssl/ssl_sess.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libssl/ssl_sess.c b/lib/libssl/ssl_sess.c index ef5b9be56d1..a688b9ef410 100644 --- a/lib/libssl/ssl_sess.c +++ b/lib/libssl/ssl_sess.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_sess.c,v 1.45 2015/07/21 03:34:38 doug Exp $ */ +/* $OpenBSD: ssl_sess.c,v 1.46 2015/08/27 06:21:15 doug Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -300,7 +300,6 @@ ssl_get_new_session(SSL *s, int session) if (session) { switch (s->version) { - case SSL3_VERSION: case TLS1_VERSION: case TLS1_1_VERSION: case TLS1_2_VERSION: |