switch database defaults from "rbt" to "qp"

replace the string "rbt" throughout BIND with "qp" so that
qpdb databases will be used by default instead of rbtdb.
rbtdb databases can still be used by specifying "database rbt;"
in a zone statement.
This commit is contained in:
Evan Hunt
2024-03-05 15:43:11 -08:00
committed by Matthijs Mekking
parent 845f832308
commit bb4464181a
27 changed files with 53 additions and 43 deletions

View File

@@ -3988,7 +3988,7 @@ check_zoneconf(const cfg_obj_t *zconfig, const cfg_obj_t *voptions,
result = ISC_R_FAILURE;
} else if (!dlz && (tresult == ISC_R_NOTFOUND ||
(tresult == ISC_R_SUCCESS &&
strcmp("rbt", cfg_obj_asstring(obj)) == 0)))
strcmp("qp", cfg_obj_asstring(obj)) == 0)))
{
isc_result_t res1;
const cfg_obj_t *fileobj = NULL;