aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2011-10-28 01:54:03 +0000
committerBart Polot <bart@net.in.tum.de>2011-10-28 01:54:03 +0000
commit6d718cd3e1080627d1241fa61a8aa6d73de4bfa7 (patch)
tree4d6d6cecd2c778860c0b1d4e7a26d87dfc56bfec /src
parenta653f8615d33ff59518f4134c0820ba477647fff (diff)
downloadgnunet-6d718cd3e1080627d1241fa61a8aa6d73de4bfa7.tar.gz
gnunet-6d718cd3e1080627d1241fa61a8aa6d73de4bfa7.zip
Fix testcase
Diffstat (limited to 'src')
-rw-r--r--src/mesh/test_mesh_small.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesh/test_mesh_small.c b/src/mesh/test_mesh_small.c
index cf647be56..e949a89e9 100644
--- a/src/mesh/test_mesh_small.c
+++ b/src/mesh/test_mesh_small.c
@@ -688,10 +688,13 @@ peergroup_ready (void *cls, const char *emsg)
688 peers_running = GNUNET_TESTING_daemons_running (pg); 688 peers_running = GNUNET_TESTING_daemons_running (pg);
689 for (i = 0; i < num_peers; i++) 689 for (i = 0; i < num_peers; i++)
690 { 690 {
691 GNUNET_PEER_Id peer_id;
692
691 d1 = GNUNET_TESTING_daemon_get (pg, i); 693 d1 = GNUNET_TESTING_daemon_get (pg, i);
694 peer_id = GNUNET_PEER_intern(&d1->id);
692 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 695 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
693 "***************** test: %u: %s\n", 696 "***************** test: %u: %s\n",
694 GNUNET_PEER_intern(&d1->id), 697 peer_id,
695 GNUNET_i2s (&d1->id)); 698 GNUNET_i2s (&d1->id));
696 } 699 }
697 d1 = GNUNET_TESTING_daemon_get (pg, 0); 700 d1 = GNUNET_TESTING_daemon_get (pg, 0);