diff options
Diffstat (limited to 'net-mail/fetchmail/files/debian-580796.patch')
-rw-r--r-- | net-mail/fetchmail/files/debian-580796.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/net-mail/fetchmail/files/debian-580796.patch b/net-mail/fetchmail/files/debian-580796.patch deleted file mode 100644 index 0bd65b1ca026..000000000000 --- a/net-mail/fetchmail/files/debian-580796.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/socket.c b/socket.c -index a3adfd8..2ebdfc6 100644 ---- a/socket.c -+++ b/socket.c -@@ -1009,8 +1009,8 @@ int SSLOpen(int sock, char *mycert, char *mykey, const char *myproto, int certck - } - } - -- if (!certck && (SSL_get_verify_result(_ssl_context[sock]) != X509_V_OK --|| !_verify_ok)) { -+ if (!certck && !fingerprint && -+ (SSL_get_verify_result(_ssl_context[sock]) != X509_V_OK || !_verify_ok)) { - report(stderr, GT_("Warning: the connection is insecure, continuing anyways. (Better use --sslcertck!)\n")); - } - |