https://bugs.exim.org/show_bug.cgi?id=2205
Git Commit <git@???> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |git@???
--- Comment #3 from Git Commit <git@???> ---
Git commit:
https://git.exim.org/exim.git/commitdiff/8f07c250406da2612e1546e153b4a61a51262692
commit 8f07c250406da2612e1546e153b4a61a51262692
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Fri Dec 1 22:43:19 2017 +0000
Commit: Jeremy Harris <jgh146exb@???>
CommitDate: Fri Dec 1 22:44:58 2017 +0000
Debug: fix coding in dnssec reporting. Bug 2205
---
src/src/host.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/src/host.c b/src/src/host.c
index 05bde3f..1f0d919 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)
--
You are receiving this mail because:
You are on the CC list for the bug.