mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Fix FallbackTooManyRecordsAxfrHandler to follow convention
All the other subclasses AxfrHandler send three messages. This oversight was inherited from the original Perl implementation of the server and was not fixed in46ecbbewhere it was rewritten. This allows refactoring and sharing of the superclass. (cherry picked from commit93a8079489)
This commit is contained in:
parent
1c642afd78
commit
a12ae42b94
1 changed files with 1 additions and 1 deletions
|
|
@ -196,8 +196,8 @@ class TooManyRecordsIxfrHandler(IxfrHandler):
|
|||
|
||||
class FallbackTooManyRecordsAxfrHandler(AxfrHandler):
|
||||
answers = (
|
||||
(soa(3),),
|
||||
(
|
||||
soa(3),
|
||||
ns(),
|
||||
txt("fallback AXFR on too many records"),
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue