mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
1697. [bug] xxx-source{,-v6} was not effective when it
specified one of listening addresses and a different port than the listening port. [RT #12257]
This commit is contained in:
parent
c13c404e97
commit
455bb19b5d
2 changed files with 6 additions and 2 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
1697. [bug] xxx-source{,-v6} was not effective when it
|
||||
specified one of listening addresses and a
|
||||
different port than the listening port. [RT #12257]
|
||||
|
||||
1696. [bug] dnssec-signzone failed to clean out nodes that
|
||||
consisted of only NSEC and RRSIG records.
|
||||
[RT #12154]
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dispatch.c,v 1.118 2004/07/21 00:48:19 marka Exp $ */
|
||||
/* $Id: dispatch.c,v 1.119 2004/08/15 04:37:38 jinmei Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1296,7 +1296,7 @@ local_addr_match(dns_dispatch_t *disp, isc_sockaddr_t *addr) {
|
|||
if (result != ISC_R_SUCCESS)
|
||||
return (ISC_FALSE);
|
||||
|
||||
return (isc_sockaddr_equal(&disp->local, &sockaddr));
|
||||
return (isc_sockaddr_equal(&sockaddr, addr));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue