From: W.C.A. Wijngaards Date: Wed, 13 Aug 2025 09:59:53 +0000 (+0200) Subject: - Fix to remove debug from cache_lookup. X-Git-Tag: release-1.24.0rc1~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=651a71fa76d0c916749f58bbfbd8535259b0bacc;p=thirdparty%2Funbound.git - Fix to remove debug from cache_lookup. --- diff --git a/daemon/remote.c b/daemon/remote.c index 4cb26f938..0b1cd64c5 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -1760,9 +1760,6 @@ cache_lookup_rrset(struct lruhash_entry* e, void* arg) struct cache_lookup_info* inf = (struct cache_lookup_info*)arg; struct ub_packed_rrset_key* k = (struct ub_packed_rrset_key*)e->key; struct packed_rrset_data* d = (struct packed_rrset_data*)e->data; - char bla[255], bla2[255]; - dname_str(k->rk.dname, bla); - dname_str(inf->nm, bla2); if(*inf->worker->env.now < d->ttl && k->id != 0 && /* not deleted */ dname_subdomain_c(k->rk.dname, inf->nm)) { diff --git a/doc/Changelog b/doc/Changelog index 8d0e4cb2d..0ae4873ef 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,6 +1,7 @@ 13 August 2025: Wouter - unbound-control cache_lookup prints the cached rrsets and messages for those. + - Fix to remove debug from cache_lookup. 12 August 2025: Wouter - Fix that unbound-control dump_cache releases the cache locks