gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit ca4f5a9c581c88477632c5c64bee71da4c9a267a
parent 48d7fbf76d18f0a04076471ecd7044b465fba1e5
Author: Bart Polot <bart@net.in.tum.de>
Date:   Mon, 16 Dec 2013 22:59:17 +0000

- not a break, can happen if only one path is known and a connection is already using it


Diffstat:
Msrc/mesh/gnunet-service-mesh_peer.c | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/mesh/gnunet-service-mesh_peer.c b/src/mesh/gnunet-service-mesh_peer.c @@ -1307,7 +1307,7 @@ GMP_connect (struct MeshPeer *peer) if (NULL != peer->path_head) { - LOG (GNUNET_ERROR_TYPE_DEBUG, "path exists\n"); + LOG (GNUNET_ERROR_TYPE_DEBUG, " some path exists\n"); p = peer_get_best_path (peer); if (NULL != p) { @@ -1340,8 +1340,7 @@ GMP_connect (struct MeshPeer *peer) } else { - LOG (GNUNET_ERROR_TYPE_DEBUG, "but is NULL!!\n"); - GNUNET_break (0); + LOG (GNUNET_ERROR_TYPE_DEBUG, " but is NULL, all paths are in use\n"); } }