mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 10:39:59 -04:00
loop_cnt test was wrong way around.
This commit is contained in:
parent
4e29e682f6
commit
0f9bbc9ea2
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: master.c,v 1.80 2000/11/15 19:06:04 gson Exp $ */
|
||||
/* $Id: master.c,v 1.81 2000/11/23 05:04:54 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1347,7 +1347,7 @@ load(dns_loadctx_t **ctxp) {
|
|||
*/
|
||||
if ((target.length - target.used) < MINTSIZ)
|
||||
COMMITALL;
|
||||
} while (!done && (ctx->loop_cnt == 0 || ctx->loop_cnt < loop_cnt++));
|
||||
} while (!done && (ctx->loop_cnt == 0 || loop_cnt++ < ctx->loop_cnt));
|
||||
|
||||
/*
|
||||
* Commit what has not yet been committed.
|
||||
|
|
|
|||
Loading…
Reference in a new issue