From: Jeremy Harris Date: Wed, 22 Apr 2020 21:03:09 +0000 (+0100) Subject: Debug: internal consistency under testsuite X-Git-Tag: exim-4_94_RC0~8 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/a06afb97d53eb100c7f1b5b00da746d071d52415 Debug: internal consistency under testsuite --- diff --git a/src/src/routers/rf_lookup_hostlist.c b/src/src/routers/rf_lookup_hostlist.c index 7f7ab6d0d..4b09247e5 100644 --- a/src/src/routers/rf_lookup_hostlist.c +++ b/src/src/routers/rf_lookup_hostlist.c @@ -148,7 +148,9 @@ for (host_item * prev = NULL, * h = addr->host_list, *next_h; h; h = next_h) if (lookup_type & LK_DEFAULT) { DEBUG(D_route|D_host_lookup) - debug_printf("DNS lookup failed: trying getipnodebyname\n"); + debug_printf("DNS lookup failed: trying %s\n", + f.running_in_test_harness + ? "host_fake_gethostbyname" : "getipnodebyname"); rc = host_find_byname(h, ignore_target_hosts, HOST_FIND_QUALIFY_SINGLE, &canonical_name, TRUE); }