mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 21:12:05 -04:00
Patch from RT 283
This commit is contained in:
parent
c89ac488df
commit
843ede41fd
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: nsupdate.c,v 1.48 2000/09/18 17:37:16 bwelling Exp $ */
|
||||
/* $Id: nsupdate.c,v 1.49 2000/09/18 19:16:45 mws Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1164,7 +1164,7 @@ recvsoa(isc_task_t *task, isc_event_t *event) {
|
|||
addrbuf, isc_result_totext(eresult));
|
||||
if (userserver != NULL)
|
||||
fatal("Couldn't talk to specified nameserver.");
|
||||
else if (ns_inuse++ >= lwconf->nsnext)
|
||||
else if (++ns_inuse >= lwconf->nsnext)
|
||||
fatal("Couldn't talk to any default nameserver.");
|
||||
ddebug("Destroying request [%lx]", request);
|
||||
dns_request_destroy(&request);
|
||||
|
|
|
|||
Loading…
Reference in a new issue