aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing.c')
-rw-r--r--src/testing/testing.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/testing/testing.c b/src/testing/testing.c
index 9e664292b..7474d9b5f 100644
--- a/src/testing/testing.c
+++ b/src/testing/testing.c
@@ -2312,10 +2312,14 @@ GNUNET_TESTING_get_address (struct GNUNET_TESTING_NodeConnection *connection,
2312 { 2312 {
2313 template = KNOWN_CONNECT_ADDRESS_TEMPLATE; 2313 template = KNOWN_CONNECT_ADDRESS_TEMPLATE;
2314 } 2314 }
2315 else 2315 else if (1 == connection->node_n)
2316 { 2316 {
2317 template = ROUTER_CONNECT_ADDRESS_TEMPLATE; 2317 template = ROUTER_CONNECT_ADDRESS_TEMPLATE;
2318 } 2318 }
2319 else
2320 {
2321 return NULL;
2322 }
2319 2323
2320 if (0 == strcmp (PREFIX_TCP, prefix)) 2324 if (0 == strcmp (PREFIX_TCP, prefix))
2321 { 2325 {