2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 23:25:38 +00:00

fix compiler warning: While loop condition is always non-zero.

nxt_30.c enforce type range to 1..127. DNS_R_RANGE otherwise.
This commit is contained in:
Mark Andrews
1999-11-03 01:07:02 +00:00
parent cebd449863
commit 19c5c23ef6
9 changed files with 31 additions and 29 deletions

View File

@@ -15,7 +15,7 @@
* SOFTWARE.
*/
/* $Id: log.c,v 1.11 1999/10/31 19:09:23 halley Exp $ */
/* $Id: log.c,v 1.12 1999/11/03 01:07:02 marka Exp $ */
/* Principal Authors: DCL */
@@ -868,7 +868,7 @@ isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category,
* XXX duplicate filtering (do not write multiple times to same source
* via various channels)
*/
while (1) {
do {
/*
* If the channel list end was reached and a match was made,
* everything is finished.
@@ -1143,7 +1143,7 @@ isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category,
}
}
} while (1);
isc_mutex_unlock(&lctx->lock);
}