mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 09:37:10 -04:00
AXFRs were misidentified as AXFR-style IXFRs in log messages
This commit is contained in:
parent
f33fe250cf
commit
fde3820de9
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: xfrout.c,v 1.104 2001/09/28 00:45:34 gson Exp $ */
|
||||
/* $Id: xfrout.c,v 1.105 2001/10/30 00:55:25 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1093,6 +1093,7 @@ ns_xfr_start(ns_client_t *client, dns_rdatatype_t reqtype) {
|
|||
ISC_LOG_DEBUG(4),
|
||||
"IXFR version not in journal, "
|
||||
"falling back to AXFR");
|
||||
mnemonic = "AXFR-style IXFR";
|
||||
goto axfr_fallback;
|
||||
}
|
||||
CHECK(result);
|
||||
|
|
@ -1100,7 +1101,6 @@ ns_xfr_start(ns_client_t *client, dns_rdatatype_t reqtype) {
|
|||
axfr_fallback:
|
||||
CHECK(axfr_rrstream_create(mctx, db, ver,
|
||||
&data_stream));
|
||||
mnemonic = "AXFR-style IXFR";
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue