From: Jeremy Harris Date: Mon, 21 Apr 2014 12:07:17 +0000 (+0100) Subject: Fix DISABLE_DNSSEC build X-Git-Tag: exim-4_83_RC1~51^2~3 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/93d4b03a2d9da8858f33c445b57128ef890f77fe Fix DISABLE_DNSSEC build Bad syntax possibly only affected some compilers. --- 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 */