2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

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

@@ -73,7 +73,7 @@
#define ERR_IS_MXCNAME 6
#define ERR_IS_SRVCNAME 7
static const char *dbtype[] = { "rbt" };
static const char *dbtype[] = { "qp" };
int debug = 0;
const char *journal = NULL;