From 9a07ba196afb7c09422b0fa33071c4c42079f487 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Wed, 26 Oct 2011 12:10:32 +0000 Subject: Transformed assert into warning --- src/mesh/test_mesh_small.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/mesh') diff --git a/src/mesh/test_mesh_small.c b/src/mesh/test_mesh_small.c index 6545472c9..cf647be56 100644 --- a/src/mesh/test_mesh_small.c +++ b/src/mesh/test_mesh_small.c @@ -518,12 +518,12 @@ topo_cb (void *cls, if (p1 == pid1) { p2 = GNUNET_PEER_search(second); - GNUNET_assert(p2 < num_peers); - if (p2 == 0) + if (p2 == 0 || p2 > num_peers) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - "***************** test: %s is UNKNOWN!?\n", - GNUNET_i2s(second)); + "***************** test: %s is UNKNOWN!? (%u)\n", + GNUNET_i2s(second), + p2); return; } mesh_peers[p2]++; @@ -536,12 +536,12 @@ topo_cb (void *cls, if (p1 == pid1) { p2 = GNUNET_PEER_search(first); - GNUNET_assert(p2 < num_peers); - if (p2 == 0) + if (p2 == 0 || p2 > num_peers) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - "***************** test: %s is UNKNOWN!?\n", - GNUNET_i2s(first)); + "***************** test: %s is UNKNOWN!? (%u)\n", + GNUNET_i2s(first), + p2); return; } mesh_peers[p2]++; -- cgit v1.2.3