2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

2688. [bug] Use INTERFACE_F_POINTTOPOINT, not IFF_POINTOPOINT,

to decide to fetch the destination address. [RT #20305]
This commit is contained in:
Mark Andrews 2009-09-24 06:37:50 +00:00
parent 63a1800105
commit 69338455d9
2 changed files with 5 additions and 2 deletions

View File

@ -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]

View 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);