Codebase list irssi / 628d4f1
Pull disable_sslv2 patch from Ubuntu Gerfried Fuchs 13 years ago
3 changed file(s) with 16 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
33 utf8 characters.
44 * Bump Standards-Version to 3.9.2.
55 * Update to debhelper 7, use dh_prep instead of dh_clean -k.
6 * Pull disable_sslv2 patch from Ubuntu.
67
78 --
89
0 Description: Do not use SSLv2 protocol
1 Origin: upstream, r5136
2 Author: bazerka
3
4 --- a/src/core/network-openssl.c
5 +++ b/src/core/network-openssl.c
6 @@ -406,6 +406,7 @@
7 g_error("Could not allocate memory for SSL context");
8 return NULL;
9 }
10 + SSL_CTX_set_options(ctx, SSL_OP_ALL | SSL_OP_NO_SSLv2);
11
12 if (mycert && *mycert) {
13 char *scert = NULL, *spkey = NULL;
55 12manpage-fix
66 17cumode_space-fix
77 18bind_utf8-fix
8 19disable_sslv2