Remove temporary debugging message and close related Debian bug.

This commit is contained in:
Simon Kelley
2022-01-17 23:54:58 +00:00
parent 10cd342f5c
commit a946857133
2 changed files with 2 additions and 3 deletions

1
debian/changelog vendored
View File

@@ -3,6 +3,7 @@ dnsmasq (2.87-1) unstable; urgency=low
* New upstream. * New upstream.
* Include new NFTset support in the build. * Include new NFTset support in the build.
* Fix crash on netboot with DNS server disabled. (closes: #996332) * Fix crash on netboot with DNS server disabled. (closes: #996332)
* Fix rare lockup in DNSSEC. (closes: #1001576)
-- Simon Kelley <simon@thekelleys.org.uk> Wed, 08 Sep 2021 23:11:25 +0000 -- Simon Kelley <simon@thekelleys.org.uk> Wed, 08 Sep 2021 23:11:25 +0000

View File

@@ -899,8 +899,6 @@ static void dnssec_validate(struct frec *forward, struct dns_header *header,
forward->stash = stash; forward->stash = stash;
return; return;
} }
my_syslog(LOG_WARNING, _("detected DNSSEC dependency loop involving %s"), daemon->keyname);
} }
else else
{ {
@@ -978,7 +976,7 @@ static void dnssec_validate(struct frec *forward, struct dns_header *header,
blockdata_free(stash); /* don't leak this on failure. */ blockdata_free(stash); /* don't leak this on failure. */
} }
/* sending DNSSEC query failed. */ /* sending DNSSEC query failed or loop detected. */
status = STAT_ABANDONED; status = STAT_ABANDONED;
} }