r2814 - in glibc-package/trunk/debian: . patches/any
Author: aurel32
Date: 2008-02-13 16:16:45 +0000 (Wed, 13 Feb 2008)
New Revision: 2814
Modified:
glibc-package/trunk/debian/changelog
glibc-package/trunk/debian/patches/any/cvs-rfc3484.diff
Log:
* any/cvs/rfc3484.diff: patch from CVS to fix recognition of interface
family. Closes: #465583.
Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog 2008-02-12 23:00:21 UTC (rev 2813)
+++ glibc-package/trunk/debian/changelog 2008-02-13 16:16:45 UTC (rev 2814)
@@ -1,8 +1,9 @@
glibc (2.7-8) unstable; urgency=low
- *
+ * any/cvs/rfc3484.diff: patch from CVS to fix recognition of interface
+ family. Closes: #465583.
- -- Aurelien Jarno <aurel32@debian.org> Wed, 13 Feb 2008 00:00:22 +0100
+ -- Aurelien Jarno <aurel32@debian.org> Wed, 13 Feb 2008 17:12:18 +0100
glibc (2.7-7) unstable; urgency=low
Modified: glibc-package/trunk/debian/patches/any/cvs-rfc3484.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/cvs-rfc3484.diff 2008-02-12 23:00:21 UTC (rev 2813)
+++ glibc-package/trunk/debian/patches/any/cvs-rfc3484.diff 2008-02-13 16:16:45 UTC (rev 2814)
@@ -1,3 +1,9 @@
+2008-01-02 Ulrich Drepper <drepper@redhat.com>
+
+ * sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
+ recognition of interface family.
+
+
2007-11-12 Ulrich Drepper <drepper@redhat.com>
* include/ifaddrs.c (struct in6addrinfo): Add prefixlen field.
@@ -339,7 +345,7 @@
+ {
+ address = local;
+ out:
-+ if (ifam->ifa_family != AF_INET)
++ if (ifam->ifa_family == AF_INET)
{
- out_v4:
- if (*(const in_addr_t *) (address ?: local)
Reply to: