]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2688. [bug] Use INTERFACE_F_POINTTOPOINT, not IFF_POINTOPOINT,
authorMark Andrews <marka@isc.org>
Thu, 24 Sep 2009 06:37:50 +0000 (06:37 +0000)
committerMark Andrews <marka@isc.org>
Thu, 24 Sep 2009 06:37:50 +0000 (06:37 +0000)
                        to decide to fetch the destination address. [RT #20305]

CHANGES
lib/isc/unix/ifiter_getifaddrs.c

diff --git a/CHANGES b/CHANGES
index 2aa5426ec1eb45d2ab13c9a98cafb621c93e01c3..0ccb81cee4b9f85f7d05e9c057d4e91ee40dd1f0 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2688.  [bug]           Use INTERFACE_F_POINTTOPOINT, not IFF_POINTOPOINT,
+                       to decide to fetch the destination address. [RT #20305]
+
 2687.  [bug]           Fixed dnssec-signzone -S handling of revoked keys.
                        Also, added warnings when revoking a ZSK, as this is
                        not defined by protocol (but is legal).  [RT #19943]
index b576d4632fbb03357b2fcea662aa03ff8464a24d..7ca5cf258ba480a4f70d10587dddc847cc91d7eb 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: ifiter_getifaddrs.c,v 1.11 2008/03/20 23:47:00 tbox Exp $ */
+/* $Id: ifiter_getifaddrs.c,v 1.12 2009/09/24 06:37:50 marka Exp $ */
 
 /*! \file
  * \brief
@@ -181,7 +181,7 @@ internal_current(isc_interfaceiter_t *iter) {
                         ifa->ifa_name);
 
        if (ifa->ifa_dstaddr != NULL &&
-           (iter->current.flags & IFF_POINTOPOINT) != 0)
+           (iter->current.flags & INTERFACE_F_POINTTOPOINT) != 0)
                get_addr(family, &iter->current.dstaddress, ifa->ifa_dstaddr,
                         ifa->ifa_name);