Commit f84e674d authored by Simon Kelley's avatar Simon Kelley

Be persistent with broken-upstream-DNSSEC warnings.

parent 7f008431
...@@ -876,12 +876,7 @@ int dnssec_validate_ds(time_t now, struct dns_header *header, size_t plen, char ...@@ -876,12 +876,7 @@ int dnssec_validate_ds(time_t now, struct dns_header *header, size_t plen, char
if (rc == STAT_INSECURE) if (rc == STAT_INSECURE)
{ {
static int reported = 0; my_syslog(LOG_WARNING, _("Insecure DS reply received, do upstream DNS servers support DNSSEC?"));
if (!reported)
{
reported = 1;
my_syslog(LOG_WARNING, _("Insecure DS reply received, do upstream DNS servers support DNSSEC?"));
}
rc = STAT_BOGUS; rc = STAT_BOGUS;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment