X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fhost.c;h=7737704cdf3fffa0889784a9e9224f2f0dfb8aff;hb=09c17790eec23907b93df1ec7cee746b28dfc836;hp=2eef0ba700ee2e25e993c2555d5a356a138ffce3;hpb=9175a8d2ac50382af2045b37e7b054180f91f4e8;p=exim.git diff --git a/src/src/host.c b/src/src/host.c index 2eef0ba70..7737704cd 100644 --- a/src/src/host.c +++ b/src/src/host.c @@ -3068,8 +3068,9 @@ DEBUG(D_host_lookup) yield); for (h = host; h != last->next; h = h->next) { - debug_printf(" %s %s MX=%d ", h->name, - (h->address == NULL)? US"" : h->address, h->mx); + debug_printf(" %s %s MX=%d %s", h->name, + !h->address ? US"" : h->address, h->mx, + h->dnssec == DS_YES ? US"DNSSEC " : US""); if (h->port != PORT_NONE) debug_printf("port=%d ", h->port); if (h->status >= hstatus_unusable) debug_printf("*"); debug_printf("\n");