From 93d4b03a2d9da8858f33c445b57128ef890f77fe Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Mon, 21 Apr 2014 13:07:17 +0100 Subject: [PATCH] Fix DISABLE_DNSSEC build Bad syntax possibly only affected some compilers. --- src/Makefile | 3 ++- src/src/dns.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 31c459a05..b913aec8a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -90,7 +90,8 @@ distclean:; $(RM_COMMAND) -rf build-* cscope* cscope.files: FRC echo "-q" > $@ echo "-p3" >> $@ - find src Local -name "*.[cshyl]" -print \ + find src Local OS -name "*.[cshyl]" -print \ + -o -name "os.h*" -print \ -o -name "*akefile*" -print \ -o -name EDITME -print >> $@ diff --git a/src/src/dns.c b/src/src/dns.c index a15eb033a..6efb88d58 100644 --- a/src/src/dns.c +++ b/src/src/dns.c @@ -233,7 +233,7 @@ if (dns_dnssec_ok >= 0) dns_dnssec_ok ? "" : "un"); if (use_dnssec) DEBUG(D_resolver) - debug_printf("Unable to set DNSSEC without resolver support.\n") + debug_printf("Unable to set DNSSEC without resolver support.\n"); # endif #endif /* DISABLE_DNSSEC */ -- 2.25.1