]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/openssl-disable-sslv2-sslv3.patch
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next
[ipfire-2.x.git] / src / patches / openssl-disable-sslv2-sslv3.patch
1 diff -up openssl-1.0.1h/ssl/ssl_lib.c.v2v3 openssl-1.0.1h/ssl/ssl_lib.c
2 --- openssl-1.0.1h/ssl/ssl_lib.c.v2v3 2014-06-11 16:02:52.000000000 +0200
3 +++ openssl-1.0.1h/ssl/ssl_lib.c 2014-06-30 14:18:04.290248080 +0200
4 @@ -1875,6 +1875,9 @@ SSL_CTX *SSL_CTX_new(const SSL_METHOD *m
5 */
6 ret->options |= SSL_OP_LEGACY_SERVER_CONNECT;
7
8 + /* Disable SSLv2 and SSLv3 by default (affects the SSLv23_method() only) */
9 + ret->options |= SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3;
10 +
11 return(ret);
12 err:
13 SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);