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

3788. [bug] dns_peer_getrequestsit was returning request_nsid by

mistake.
This commit is contained in:
Mark Andrews 2014-03-16 03:31:40 +11:00
parent 03296893bc
commit 61cfadb50e
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
3788. [bug] dns_peer_getrequestsit was returning request_nsid by
mistake.
--- 9.10.0b2 released ---
3787. [bug] The code that checks whether "auto-dnssec" is

View File

@ -468,7 +468,7 @@ dns_peer_getrequestsit(dns_peer_t *peer, isc_boolean_t *retval) {
REQUIRE(retval != NULL);
if (DNS_BIT_CHECK(REQUEST_SIT_BIT, &peer->bitflags)) {
*retval = peer->request_nsid;
*retval = peer->request_sit;
return (ISC_R_SUCCESS);
} else
return (ISC_R_NOTFOUND);