summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-12-01 22:43:19 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2017-12-01 22:44:58 +0000
commit8f07c250406da2612e1546e153b4a61a51262692 (patch)
tree5f3506e8a7de52f8f7b03621c0b159b84edcd9d8 /src
parentb64d13ee7a7b9a398159d75e6e71c018a3cf2690 (diff)
Debug: fix coding in dnssec reporting. Bug 2205
Diffstat (limited to 'src')
-rw-r--r--src/src/host.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/host.c b/src/src/host.c
index 05bde3fb2..1f0d91959 100644
--- a/src/src/host.c
+++ b/src/src/host.c
@@ -2612,8 +2612,8 @@ if ((whichrrs & HOST_FIND_BY_SRV) != 0)
DEBUG(D_dns)
if ((dnssec_request || dnssec_require)
- & !dns_is_secure(&dnsa)
- & dns_is_aa(&dnsa))
+ && !dns_is_secure(&dnsa)
+ && dns_is_aa(&dnsa))
debug_printf("DNS lookup of %.256s (SRV) requested AD, but got AA\n", host->name);
if (dnssec_request)