aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/dnsmasq/patches
diff options
context:
space:
mode:
authorKevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>2019-08-03 20:55:45 +0100
committerKevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>2019-08-03 20:55:45 +0100
commita2754667291bef7e2e5f003e0f9c3296dcfd1959 (patch)
treeb07235c36b4692f27f768fa81923027298bd4be6 /package/network/services/dnsmasq/patches
parentba8aeb02eae26771b89390403462e6841621069e (diff)
downloadupstream-a2754667291bef7e2e5f003e0f9c3296dcfd1959.tar.gz
upstream-a2754667291bef7e2e5f003e0f9c3296dcfd1959.tar.bz2
upstream-a2754667291bef7e2e5f003e0f9c3296dcfd1959.zip
Revert "dnsmasq: improve insecure DS warning"
This reverts commit cd91f2327ffb06a41129a35ae7be1e7923a78d74. Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Diffstat (limited to 'package/network/services/dnsmasq/patches')
-rw-r--r--package/network/services/dnsmasq/patches/130-dnssec-add-hostname-info-to-insecure-DS-warning.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/package/network/services/dnsmasq/patches/130-dnssec-add-hostname-info-to-insecure-DS-warning.patch b/package/network/services/dnsmasq/patches/130-dnssec-add-hostname-info-to-insecure-DS-warning.patch
deleted file mode 100644
index e3ef604918..0000000000
--- a/package/network/services/dnsmasq/patches/130-dnssec-add-hostname-info-to-insecure-DS-warning.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From a1030c159e28bbfa966799e7b9a86081398d6352 Mon Sep 17 00:00:00 2001
-From: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
-Date: Sat, 11 May 2019 16:04:56 +0100
-Subject: [PATCH] dnssec: add hostname info to insecure DS warning
-
-Make the existing "insecure DS received" warning more informative by
-reporting the domain name reporting the issue.
-
-This may help identify a problem with a specific domain or server
-configuration.
-
-Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
----
- src/dnssec.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/src/dnssec.c
-+++ b/src/dnssec.c
-@@ -873,7 +873,7 @@ int dnssec_validate_ds(time_t now, struc
-
- if (rc == STAT_INSECURE)
- {
-- my_syslog(LOG_WARNING, _("Insecure DS reply received, do upstream DNS servers support DNSSEC?"));
-+ my_syslog(LOG_WARNING, _("Insecure DS reply received for %s, check domain configuration and upstream DNS server DNSSEC support"), name);
- rc = STAT_BOGUS;
- }
-