Gitweb:
http://git.exim.org/exim.git/commitdiff/93d4b03a2d9da8858f33c445b57128ef890f77fe
Commit: 93d4b03a2d9da8858f33c445b57128ef890f77fe
Parent: 9f1ec64247097ad2c1600bbf0124f619b3e445b7
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Mon Apr 21 13:07:17 2014 +0100
Committer: Jeremy Harris <jgh146exb@???>
CommitDate: Mon Apr 21 13:07:17 2014 +0100
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 31c459a..b913aec 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 a15eb03..6efb88d 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 */