From: Mark Andrews Date: Wed, 26 Jun 2002 04:48:12 +0000 (+0000) Subject: 1335. [bug] Options should apply to the internal _bind view. X-Git-Tag: v9.0.1^2~8298 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=70f8c70cdd3ca68edcf9d448eb508abf3697719a;p=thirdparty%2Fbind9.git 1335. [bug] Options should apply to the internal _bind view. --- diff --git a/CHANGES b/CHANGES index 2f795da7e84..e1563a46af4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +1335. [bug] Options should apply to the internal _bind view. + 1334. [port] Handle ECONNRESET from sendmsg() [unix]. 1333. [func] Query log now says if the query was signed (S) or diff --git a/bin/named/server.c b/bin/named/server.c index a873ff53019..0cad3ff4dd7 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: server.c,v 1.379 2002/06/20 00:21:35 marka Exp $ */ +/* $Id: server.c,v 1.380 2002/06/26 04:48:12 marka Exp $ */ #include @@ -1816,7 +1816,7 @@ load_configuration(const char *filename, ns_server_t *server, { cfg_obj_t *vconfig = cfg_listelt_value(element); CHECK(create_view(vconfig, &viewlist, &view)); - CHECK(configure_view(view, ns_g_defaults, vconfig, ns_g_mctx, + CHECK(configure_view(view, config, vconfig, ns_g_mctx, &aclconfctx, ISC_FALSE)); dns_view_freeze(view); dns_view_detach(&view);