aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/testbed/testbed_api_testbed.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/testbed/testbed_api_testbed.c b/src/testbed/testbed_api_testbed.c
index 106631604..73a4bcfdd 100644
--- a/src/testbed/testbed_api_testbed.c
+++ b/src/testbed/testbed_api_testbed.c
@@ -1084,9 +1084,12 @@ GNUNET_TESTBED_run (const char *host_filename,
1084 "testbed", "OVERLAY_TOPOLOGY_FILE"); 1084 "testbed", "OVERLAY_TOPOLOGY_FILE");
1085 goto error_cleanup; 1085 goto error_cleanup;
1086 } 1086 }
1087 break;
1088 default: 1087 default:
1089 /* Do nothing */ 1088 /* Warn if OVERLAY_RANDOM_LINKS is present that it will be ignored */
1089 if (GNUNET_YES == GNUNET_CONFIGURATION_have_value (rc->cfg, "testbed",
1090 "OVERLAY_RANDOM_LINKS"))
1091 LOG (GNUNET_ERROR_TYPE_WARNING,
1092 "Ignoring value of `OVERLAY_RANDOM_LINKS' in given configuration\n");
1090 break; 1093 break;
1091 } 1094 }
1092 if (NULL != host_filename) 1095 if (NULL != host_filename)