summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s3_lib.c
diff options
context:
space:
mode:
authordoug <>2015-08-27 06:21:15 +0000
committerdoug <>2015-08-27 06:21:15 +0000
commita7f1c6569618905a042efceca3edc3812bc607b0 (patch)
treeedcaf86fcb7a4c7c49e4f2bbefde1665cfd57458 /src/lib/libssl/s3_lib.c
parent7ea97326ad345e697ded653d10df9832673def3d (diff)
downloadopenbsd-a7f1c6569618905a042efceca3edc3812bc607b0.tar.gz
openbsd-a7f1c6569618905a042efceca3edc3812bc607b0.tar.bz2
openbsd-a7f1c6569618905a042efceca3edc3812bc607b0.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 'src/lib/libssl/s3_lib.c')
-rw-r--r--src/lib/libssl/s3_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c
index c8bdac0214..42396a21e9 100644
--- a/src/lib/libssl/s3_lib.c
+++ b/src/lib/libssl/s3_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s3_lib.c,v 1.99 2015/07/19 06:23:51 doug Exp $ */ 1/* $OpenBSD: s3_lib.c,v 1.100 2015/08/27 06:21:15 doug Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -2112,7 +2112,7 @@ ssl3_clear(SSL *s)
2112 s->s3->total_renegotiations = 0; 2112 s->s3->total_renegotiations = 0;
2113 s->s3->num_renegotiations = 0; 2113 s->s3->num_renegotiations = 0;
2114 s->s3->in_read_app_data = 0; 2114 s->s3->in_read_app_data = 0;
2115 s->version = SSL3_VERSION; 2115 s->version = TLS1_VERSION;
2116 2116
2117 free(s->next_proto_negotiated); 2117 free(s->next_proto_negotiated);
2118 s->next_proto_negotiated = NULL; 2118 s->next_proto_negotiated = NULL;