+5465. [func] Fallback to built in trust-anchors, managed-keys, or
+ trusted-keys if the bindkeys-file (bind.keys) cannot
+ be parsed. [GL #1235]
+
5463. [bug] Address potential NULL pointer dereference on out of
memory in dnstap.c. [GL #2010]
result = cfg_parse_file(bindkeys_parser, server->bindkeysfile,
&cfg_type_bindkeys, &bindkeys);
- CHECK(result);
+ if (result != ISC_R_SUCCESS) {
+ isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL,
+ NS_LOGMODULE_SERVER, ISC_LOG_INFO,
+ "unable to parse '%s' error '%s'; using "
+ "built-in keys instead",
+ server->bindkeysfile,
+ isc_result_totext(result));
+ }
} else {
isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL,
NS_LOGMODULE_SERVER, ISC_LOG_INFO,