summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2020-04-22 22:03:09 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2020-04-22 22:03:09 +0100
commita06afb97d53eb100c7f1b5b00da746d071d52415 (patch)
treec039d7c5226ef75d2a847101411c3e0cc9b95244 /src
parent798f6588bc18ec6a36ada846406e98d4e0ec9df9 (diff)
Debug: internal consistency under testsuite
Diffstat (limited to 'src')
-rw-r--r--src/src/routers/rf_lookup_hostlist.c4
1 files changed, 3 insertions, 1 deletions
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);
}