]> git.ipfire.org Git - thirdparty/bind9.git/commit
fix more ambiguous struct names
authorEvan Hunt <each@isc.org>
Mon, 29 Apr 2024 22:45:26 +0000 (15:45 -0700)
committerEvan Hunt <each@isc.org>
Tue, 30 Apr 2024 19:50:01 +0000 (12:50 -0700)
commit4b022461307f3db9ab56fbb5e018ecf1596c381a
treefae24f2360cc12708187327ce1fab26f3a3582e7
parente300dfce46508b8802fd2af4064e69b3b23a93b4
fix more ambiguous struct names

there were some structure names used in qpcache.c and qpzone.c that
were too similar to each other and could be confusing when debugging.
they have been changed as follows:

in qcache.c:
- changed_t was unused, and has been removed
- search_t -> qpc_search_t
- qpdb_rdatasetiter_t -> qpc_rditer_t
- qpdb_dbiterator_t -> qpc_dbiter_t

in qpzone.c:
- qpdb_changed_t -> qpz_changed_t
- qpdb_changedlist_t -> qpz_changedlist_t
- qpdb_version_t -> qpz_version_t
- qpdb_versionlist_t -> qpz_versionlist_t
- qpdb_search_t -> qpz_search_t
- qpdb_load_t -> qpz_search_t
lib/dns/qpcache.c
lib/dns/qpzone.c