From 00194367a6715659248ebc98f6efd72f61f1d34f Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 4 May 2014 10:45:18 +0100 Subject: [PATCH 1/1] Makefile: Match A and AAAA records, for IPv6ness. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b134f09..7a397d1 100644 --- a/Makefile +++ b/Makefile @@ -57,9 +57,9 @@ dnserr.zone.sigold: dnserr.zone key/$(ZONE).stamp TARGETS += dnserr.zone.sig OLDSIGMATCH = $$1 == "expired-rrsig.$(ZONE)." && \ - $$4 == "RRSIG" && $$5 == "A" + $$4 == "RRSIG" && ($$5 == "A" || $$5 == "AAAA") BADSIGMATCH = $$1 == "invalid-rrsig.$(ZONE)." && \ - $$4 == "RRSIG" && $$5 == "A" + $$4 == "RRSIG" && ($$5 == "A" || $$5 == "AAAA") CLEAN += t.oldsig dnserr.zone.sig: dnserr.zone.sigold dnserr.zone.signew awk '$(OLDSIGMATCH) { print; }' \ -- 2.11.0