from named.conf when dnstap was specified
+5266. [bug] named-checkconf failed to report dnstap-output
+ missing from named.conf when dnstap was specified.
+ [GL #1136]
+
5265. [bug] DNS64 and RPZ nodata (CNAME *.) rules interacted badly
[GL #1106]
--- /dev/null
+options {
+ dnstap { client; auth; };
+ recursion yes;
+};
result = ISC_R_FAILURE;
}
}
+ } else {
+ (void) cfg_map_get(options, "dnstap", &obj);
+ if (obj != NULL) {
+ cfg_obj_log(obj, logctx, ISC_LOG_ERROR,
+ "'dnstap-output' must be set if 'dnstap' "
+ "is set");
+ if (result == ISC_R_SUCCESS) {
+ result = ISC_R_FAILURE;
+ }
+ }
}
#endif