aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-11-14 15:59:49 +0000
committerBart Polot <bart@net.in.tum.de>2012-11-14 15:59:49 +0000
commit14678cc9ce8da552725134801e7de376e3c60107 (patch)
tree99729bf2ba0d78c284cc893727ec50a713fc8f7f /src
parent1fe0d3b7444ad6114958d396451dee9b5c1c9136 (diff)
downloadgnunet-14678cc9ce8da552725134801e7de376e3c60107.tar.gz
gnunet-14678cc9ce8da552725134801e7de376e3c60107.zip
- debug
Diffstat (limited to 'src')
-rw-r--r--src/mesh/mesh_block_lib.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesh/mesh_block_lib.c b/src/mesh/mesh_block_lib.c
index 61d4607e5..d414a5d81 100644
--- a/src/mesh/mesh_block_lib.c
+++ b/src/mesh/mesh_block_lib.c
@@ -100,7 +100,10 @@ GNUNET_MESH_regex_block_check (const struct MeshRegexBlock *block,
100 int res; 100 int res;
101 struct mesh_block_xquery_ctx ctx; 101 struct mesh_block_xquery_ctx ctx;
102 102
103 if ( (GNUNET_YES == ntohl(block->accepting)) && (xquery[0] == '\0') ) 103 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
104 "* Checking block with xquery \"%s\"\n",
105 xquery);
106 if ( (GNUNET_YES == ntohl(block->accepting)) && ('\0' == xquery[0]) )
104 return GNUNET_OK; 107 return GNUNET_OK;
105 ctx.xquery = xquery; 108 ctx.xquery = xquery;
106 ctx.found = GNUNET_NO; 109 ctx.found = GNUNET_NO;