No special logic for relative names

This commit is contained in:
Matthijs Mekking
2024-03-05 16:52:43 -08:00
committed by Evan Hunt
parent 6e9e352068
commit a9a47938eb
+2 -2
View File
@@ -2244,8 +2244,8 @@ dns__qpdb_createiterator(dns_db_t *db, unsigned int options,
qpdbiter->common.methods = &dbiterator_methods;
qpdbiter->common.db = NULL;
dns_db_attach(db, &qpdbiter->common.db);
qpdbiter->common.relative_names = ((options & DNS_DB_RELATIVENAMES) !=
0);
qpdbiter->common.relative_names = 0; /* no special logic for relative
names */
qpdbiter->common.magic = DNS_DBITERATOR_MAGIC;
qpdbiter->paused = true;
qpdbiter->tree_locked = isc_rwlocktype_none;