aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-11-02 10:18:13 +0000
committerChristian Grothoff <christian@grothoff.org>2012-11-02 10:18:13 +0000
commit955680aa9ef0b5717ad070cafe9edeccad1b4a72 (patch)
tree7587adfa10b589704747d01d24f8189da3396368 /src
parentbb39f7c081f87201ae277c9237f001353bd87fbb (diff)
downloadgnunet-955680aa9ef0b5717ad070cafe9edeccad1b4a72.tar.gz
gnunet-955680aa9ef0b5717ad070cafe9edeccad1b4a72.zip
-minor fixes
Diffstat (limited to 'src')
-rw-r--r--src/testbed/testbed_api_statistics.c2
-rw-r--r--src/testbed/testbed_api_testbed.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/testbed/testbed_api_statistics.c b/src/testbed/testbed_api_statistics.c
index 8fe104be2..0ee36151d 100644
--- a/src/testbed/testbed_api_statistics.c
+++ b/src/testbed/testbed_api_statistics.c
@@ -48,7 +48,7 @@ GNUNET_TESTBED_get_statistics (unsigned int num_peers,
48{ 48{
49 // FIXME: not implemented, but clients will kind-of work if we do this: 49 // FIXME: not implemented, but clients will kind-of work if we do this:
50 GNUNET_break (0); 50 GNUNET_break (0);
51 cont (cls, NULL, NULL); 51 cont (cls, NULL, "not implemented");
52 return NULL; 52 return NULL;
53} 53}
54 54
diff --git a/src/testbed/testbed_api_testbed.c b/src/testbed/testbed_api_testbed.c
index a0a0b573c..9ec47891e 100644
--- a/src/testbed/testbed_api_testbed.c
+++ b/src/testbed/testbed_api_testbed.c
@@ -629,7 +629,7 @@ GNUNET_TESTBED_run (const char *host_filename,
629 "OVERLAY_TOPOLOGY", 629 "OVERLAY_TOPOLOGY",
630 &topology)) 630 &topology))
631 { 631 {
632 if (0 == strcmp (topology, "RANDOM")) 632 if (0 == strcasecmp (topology, "RANDOM"))
633 { 633 {
634 rc->topology = GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI; 634 rc->topology = GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI;
635 if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (cfg, "testbed", 635 if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (cfg, "testbed",