summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2014-04-21 13:07:17 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2014-04-21 13:07:17 +0100
commit93d4b03a2d9da8858f33c445b57128ef890f77fe (patch)
tree1d5dcb7f2799d601b1b4743575e49a338e04b59f /src
parent9f1ec64247097ad2c1600bbf0124f619b3e445b7 (diff)
Fix DISABLE_DNSSEC build
Bad syntax possibly only affected some compilers.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile3
-rw-r--r--src/src/dns.c2
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 */