diff --git a/CHANGES b/CHANGES index 992cdad789..5098839168 100644 --- a/CHANGES +++ b/CHANGES @@ -25,8 +25,7 @@ 1070. [bug] Copy DNSSEC OK (DO) to response as specified by draft-ietf-dnsext-dnssec-okbit-03.txt. -1069. [func] Kill oldest recursive query when recursive query - quota is exhausted. +1069. [placeholder] 1068. [bug] errno could be overwritten by catgets(). [RT #1921] diff --git a/bin/named/server.c b/bin/named/server.c index a85d7674b8..5794a8b377 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.356 2001/10/26 23:18:51 gson Exp $ */ +/* $Id: server.c,v 1.357 2001/10/29 19:10:42 gson Exp $ */ #include @@ -2419,7 +2419,7 @@ ns_server_create(isc_mem_t *mctx, ns_server_t **serverp) { RUNTIME_CHECK(result == ISC_R_SUCCESS); result = isc_quota_init(&server->recursionquota, 100); RUNTIME_CHECK(result == ISC_R_SUCCESS); - isc_quota_soft(&server->recursionquota, ISC_TRUE); + isc_quota_soft(&server->recursionquota, ISC_FALSE); result = dns_aclenv_init(mctx, &server->aclenv); RUNTIME_CHECK(result == ISC_R_SUCCESS);