]> git.ipfire.org Git - thirdparty/bind9.git/commit
use ISC_LIST_FOREACH in more places
authorEvan Hunt <each@isc.org>
Sat, 22 Mar 2025 22:26:16 +0000 (15:26 -0700)
committerEvan Hunt <each@isc.org>
Mon, 31 Mar 2025 20:45:14 +0000 (13:45 -0700)
commitad7f744115e69663f34cd4c19aa1bc2bfeb7773d
tree27c2805c274bf258492adc11b4696e919cae5259
parent522ca7bb548d4047410e742cc5353dce3613a8db
use ISC_LIST_FOREACH in more places

use the ISC_LIST_FOREACH pattern in places where lists had
been iterated using a different pattern from the typical
`for` loop: for example, `while (!ISC_LIST_EMPTY(...))` or
`while ((e = ISC_LIST_HEAD(...)) != NULL)`.
38 files changed:
bin/delv/delv.c
bin/dig/dighost.c
bin/dig/nslookup.c
bin/dnssec/dnssec-ksr.c
bin/dnssec/dnssec-signzone.c
bin/named/builtin.c
bin/named/controlconf.c
bin/named/server.c
bin/named/statschannel.c
bin/named/zoneconf.c
bin/tools/mdig.c
lib/dns/adb.c
lib/dns/client.c
lib/dns/diff.c
lib/dns/dnssec.c
lib/dns/forward.c
lib/dns/keymgr.c
lib/dns/master.c
lib/dns/message.c
lib/dns/nsec.c
lib/dns/order.c
lib/dns/peer.c
lib/dns/resconf.c
lib/dns/rrl.c
lib/dns/ssu.c
lib/dns/update.c
lib/dns/zone.c
lib/isc/log.c
lib/isc/mem.c
lib/isc/netmgr/http.c
lib/isc/netmgr/netmgr.c
lib/isc/ratelimiter.c
lib/isc/tls.c
lib/ns/client.c
lib/ns/interfacemgr.c
lib/ns/query.c
lib/ns/server.c
lib/ns/update.c