diff options
Diffstat (limited to 'mail-mta/msmtp/files/msmtp-1.4.20-openssl-1.patch')
-rw-r--r-- | mail-mta/msmtp/files/msmtp-1.4.20-openssl-1.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mail-mta/msmtp/files/msmtp-1.4.20-openssl-1.patch b/mail-mta/msmtp/files/msmtp-1.4.20-openssl-1.patch deleted file mode 100644 index 5b7373fdd388..000000000000 --- a/mail-mta/msmtp/files/msmtp-1.4.20-openssl-1.patch +++ /dev/null @@ -1,22 +0,0 @@ -http://bugs.gentoo.org/327955 - ---- src/tls.c -+++ src/tls.c -@@ -888,7 +888,7 @@ - char *buf; - int length; - /* needed to get the DNS subjectAltNames: */ -- STACK *subj_alt_names; -+ STACK_OF(GENERAL_NAME) *subj_alt_names; - int subj_alt_names_count; - GENERAL_NAME *subj_alt_name; - /* did we find a name matching hostname? */ -@@ -988,7 +988,7 @@ - /* Try the DNS subjectAltNames. */ - match_found = 0; - if ((subj_alt_names = -- X509_get_ext_d2i(x509cert, NID_subject_alt_name, NULL, NULL))) -+ (STACK_OF(GENERAL_NAME)*)X509_get_ext_d2i(x509cert, NID_subject_alt_name, NULL, NULL))) - { - subj_alt_names_count = sk_GENERAL_NAME_num(subj_alt_names); - for (i = 0; i < subj_alt_names_count; i++) |