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

when creating the query source dispatcher fails, log

a message to that effect
This commit is contained in:
Andreas Gustafsson
2000-06-13 16:33:19 +00:00
parent c24265935e
commit 96ef51763f

View File

@@ -370,8 +370,13 @@ get_view_querysource_dispatch(dns_c_ctx_t *cctx, dns_c_view_t *cview,
ns_g_taskmgr, &sa, 4096,
1000, 32768, 16411, 16433,
attrs, attrmask, &disp);
if (result != ISC_R_SUCCESS)
if (result != ISC_R_SUCCESS) {
isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL,
NS_LOGMODULE_SERVER,
ISC_LOG_ERROR,
"could not get query source dispatcher");
return (result);
}
*dispatchp = disp;