mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-26 08:39:00 -04:00
978. [bug] dns_db_attachversion() had an invalid REQUIRE()
condition.
This commit is contained in:
parent
aa7638fce5
commit
e8d86192fc
2 changed files with 6 additions and 3 deletions
5
CHANGES
5
CHANGES
|
|
@ -1,6 +1,9 @@
|
|||
978. [bug] dns_db_attachversion() had an invalid REQUIRE()
|
||||
condition.
|
||||
|
||||
977. [bug] Improve "not at top of zone" error message.
|
||||
|
||||
976. [func] named-checkconf will now test load master zones
|
||||
976. [func] named-checkconf can now test load master zones
|
||||
(named-checkconf -z). [RT #1468]
|
||||
|
||||
975. [bug] "max-cache-size default;" as a view option
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: db.c,v 1.69 2001/07/24 05:23:38 mayer Exp $ */
|
||||
/* $Id: db.c,v 1.70 2001/09/04 12:17:13 marka Exp $ */
|
||||
|
||||
/***
|
||||
*** Imports
|
||||
|
|
@ -389,7 +389,7 @@ dns_db_attachversion(dns_db_t *db, dns_dbversion_t *source,
|
|||
REQUIRE(DNS_DB_VALID(db));
|
||||
REQUIRE((db->attributes & DNS_DBATTR_CACHE) == 0);
|
||||
REQUIRE(source != NULL);
|
||||
REQUIRE(targetp != NULL && *targetp != NULL);
|
||||
REQUIRE(targetp != NULL && *targetp == NULL);
|
||||
|
||||
(db->methods->attachversion)(db, source, targetp);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue