mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch 'remove-redundant-test' into 'master'
remove redundant test See merge request isc-projects/bind9!497
This commit is contained in:
commit
440380ac41
1 changed files with 3 additions and 3 deletions
|
|
@ -497,7 +497,7 @@ dns_db_find(dns_db_t *db, const dns_name_t *name, dns_dbversion_t *version,
|
|||
|
||||
REQUIRE(DNS_DB_VALID(db));
|
||||
REQUIRE(type != dns_rdatatype_rrsig);
|
||||
REQUIRE(nodep == NULL || (nodep != NULL && *nodep == NULL));
|
||||
REQUIRE(nodep == NULL || *nodep == NULL);
|
||||
REQUIRE(dns_name_hasbuffer(foundname));
|
||||
REQUIRE(rdataset == NULL ||
|
||||
(DNS_RDATASET_VALID(rdataset) &&
|
||||
|
|
@ -532,7 +532,7 @@ dns_db_findext(dns_db_t *db, const dns_name_t *name, dns_dbversion_t *version,
|
|||
|
||||
REQUIRE(DNS_DB_VALID(db));
|
||||
REQUIRE(type != dns_rdatatype_rrsig);
|
||||
REQUIRE(nodep == NULL || (nodep != NULL && *nodep == NULL));
|
||||
REQUIRE(nodep == NULL || *nodep == NULL);
|
||||
REQUIRE(dns_name_hasbuffer(foundname));
|
||||
REQUIRE(rdataset == NULL ||
|
||||
(DNS_RDATASET_VALID(rdataset) &&
|
||||
|
|
@ -564,7 +564,7 @@ dns_db_findzonecut(dns_db_t *db, const dns_name_t *name,
|
|||
|
||||
REQUIRE(DNS_DB_VALID(db));
|
||||
REQUIRE((db->attributes & DNS_DBATTR_CACHE) != 0);
|
||||
REQUIRE(nodep == NULL || (nodep != NULL && *nodep == NULL));
|
||||
REQUIRE(nodep == NULL || *nodep == NULL);
|
||||
REQUIRE(dns_name_hasbuffer(foundname));
|
||||
REQUIRE(sigrdataset == NULL ||
|
||||
(DNS_RDATASET_VALID(sigrdataset) &&
|
||||
|
|
|
|||
Loading…
Reference in a new issue