forked from pool/fetchmail
623357a802
- drop SSLv3 support to build with openssl 1.1 (bsc#1066940) * add fetchmail-openssl11.patch OBS-URL: https://build.opensuse.org/request/show/541555 OBS-URL: https://build.opensuse.org/package/show/server:mail/fetchmail?expand=0&rev=76
15 lines
653 B
Diff
15 lines
653 B
Diff
Index: fetchmail-6.3.26/socket.c
|
|
===================================================================
|
|
--- fetchmail-6.3.26.orig/socket.c 2013-04-23 22:00:45.000000000 +0200
|
|
+++ fetchmail-6.3.26/socket.c 2017-11-13 18:16:35.450860469 +0100
|
|
@@ -914,7 +914,8 @@ int SSLOpen(int sock, char *mycert, char
|
|
return -1;
|
|
#endif
|
|
} else if(!strcasecmp("ssl3",myproto)) {
|
|
- _ctx[sock] = SSL_CTX_new(SSLv3_client_method());
|
|
+ report(stderr, GT_("Your operating system does not support SSLv3.\n"));
|
|
+ return -1;
|
|
} else if(!strcasecmp("tls1",myproto)) {
|
|
_ctx[sock] = SSL_CTX_new(TLSv1_client_method());
|
|
} else if (!strcasecmp("ssl23",myproto)) {
|