aboutsummaryrefslogtreecommitdiffstats
path: root/mail-filter/libmilter/files/libmilter-glibc-2.30.patch
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-07-10 09:15:07 +0200
committerWynn Wolf Arbor2020-07-10 09:15:07 +0200
commit2341b153502e3ddb091e3a47435db96634e8c3cc (patch)
treede21221b1801e6a5419f838b5d199c4afe15e0d2 /mail-filter/libmilter/files/libmilter-glibc-2.30.patch
parentceceb32aeb40407502d4f6cb9e0053fe3d0a665e (diff)
downloadpramantha-2341b153502e3ddb091e3a47435db96634e8c3cc.tar.gz
mail-filter/libmilter: Drop package
These fixes have been incorporated upstream via [1]. [1] https://github.com/gentoo/gentoo/pull/16139
Diffstat (limited to 'mail-filter/libmilter/files/libmilter-glibc-2.30.patch')
-rw-r--r--mail-filter/libmilter/files/libmilter-glibc-2.30.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/mail-filter/libmilter/files/libmilter-glibc-2.30.patch b/mail-filter/libmilter/files/libmilter-glibc-2.30.patch
deleted file mode 100644
index 5ceac84..0000000
--- a/mail-filter/libmilter/files/libmilter-glibc-2.30.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/libmilter/sm_gethost.c 2014-03-05 01:59:45.000000000 +0100
-+++ b/libmilter/sm_gethost.c 2019-11-14 18:59:41.885353232 +0100
-@@ -51,18 +51,20 @@ sm_getipnodebyname(name, family, flags,
- {
- bool resv6 = true;
- struct hostent *h;
--
-+#ifdef RES_USE_INET6
- if (family == AF_INET6)
- {
- /* From RFC2133, section 6.1 */
- resv6 = bitset(RES_USE_INET6, _res.options);
- _res.options |= RES_USE_INET6;
- }
-+#endif
- SM_SET_H_ERRNO(0);
- h = gethostbyname(name);
-+#ifdef RES_USE_INET6
- if (family == AF_INET6 && !resv6)
- _res.options &= ~RES_USE_INET6;
--
-+#endif
- /* the function is supposed to return only the requested family */
- if (h != NULL && h->h_addrtype != family)
- {