mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
result was not being assigned.
This commit is contained in:
parent
f4f0eedb89
commit
7a80d6d5ba
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: query.c,v 1.269 2005/07/27 02:28:58 marka Exp $ */
|
||||
/* $Id: query.c,v 1.270 2005/07/28 05:46:12 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -2709,7 +2709,7 @@ query_recurse(ns_client_t *client, dns_rdatatype_t qtype, dns_name_t *qdomain,
|
|||
"recursive-clients soft limit exceeded, "
|
||||
"aborting oldest query");
|
||||
ns_client_killoldestquery(client);
|
||||
result == ISC_R_SUCCESS;
|
||||
result = ISC_R_SUCCESS;
|
||||
} else if (result == ISC_R_QUOTA) {
|
||||
ns_client_log(client, NS_LOGCATEGORY_CLIENT,
|
||||
NS_LOGMODULE_QUERY, ISC_LOG_WARNING,
|
||||
|
|
|
|||
Loading…
Reference in a new issue