mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-15 21:52:53 -04:00
3788. [bug] dns_peer_getrequestsit was returning request_nsid by
mistake.
This commit is contained in:
parent
03296893bc
commit
61cfadb50e
2 changed files with 4 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue