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

1937. [bug] sdlz doesn't handle RRSIG records. [RT #15564]

This commit is contained in:
Mark Andrews 2005-11-02 23:22:34 +00:00
parent 185f838667
commit 405ae948cc
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
1937. [bug] sdlz doesn't handle RRSIG records. [RT #15564]
1936. [bug] The validator could leak memory. [RT #15544] 1936. [bug] The validator could leak memory. [RT #15544]
1935. [bug] 'acache' was DO sensitive. [RT #15430] 1935. [bug] 'acache' was DO sensitive. [RT #15430]

View File

@ -50,7 +50,7 @@
* USE OR PERFORMANCE OF THIS SOFTWARE. * USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: sdlz.c,v 1.5 2005/10/13 01:58:32 marka Exp $ */ /* $Id: sdlz.c,v 1.6 2005/11/02 23:22:33 marka Exp $ */
/*! \file */ /*! \file */
@ -736,7 +736,7 @@ findrdataset(dns_db_t *db, dns_dbnode_t *node, dns_dbversion_t *version,
UNUSED(now); UNUSED(now);
UNUSED(sigrdataset); UNUSED(sigrdataset);
if (type == dns_rdatatype_sig) if (type == dns_rdatatype_sig || type == dns_rdatatype_rrsig)
return (ISC_R_NOTIMPLEMENTED); return (ISC_R_NOTIMPLEMENTED);
list = ISC_LIST_HEAD(sdlznode->lists); list = ISC_LIST_HEAD(sdlznode->lists);