aboutsummaryrefslogtreecommitdiff
path: root/src/gns
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-12-20 18:55:00 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-12-20 18:55:00 +0000
commit232ad66b68b7431f6e7640f228f0455e6000a0b1 (patch)
tree82da0bd71273d56b23a848f3783f851b0d86dd82 /src/gns
parentd42a67d2107c205f65d7ab8f7b7aa436767ecf0a (diff)
downloadgnunet-232ad66b68b7431f6e7640f228f0455e6000a0b1.tar.gz
gnunet-232ad66b68b7431f6e7640f228f0455e6000a0b1.zip
- fix bad log
Diffstat (limited to 'src/gns')
-rw-r--r--src/gns/gnunet-service-gns_resolver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.c b/src/gns/gnunet-service-gns_resolver.c
index 80954d8ca..0aff4564e 100644
--- a/src/gns/gnunet-service-gns_resolver.c
+++ b/src/gns/gnunet-service-gns_resolver.c
@@ -1995,14 +1995,14 @@ handle_namecache_block_response (void *cls,
1995 (0 == GNUNET_TIME_absolute_get_remaining (GNUNET_TIME_absolute_ntoh (block->expiration_time)).rel_value_us) ) ) 1995 (0 == GNUNET_TIME_absolute_get_remaining (GNUNET_TIME_absolute_ntoh (block->expiration_time)).rel_value_us) ) )
1996 { 1996 {
1997 /* namecache knows nothing; try DHT lookup */ 1997 /* namecache knows nothing; try DHT lookup */
1998 GNUNET_GNSRECORD_query_from_public_key (auth,
1999 label,
2000 &query);
1998 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 2001 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1999 "Starting DHT lookup for `%s' in zone `%s' under key `%s'\n", 2002 "Starting DHT lookup for `%s' in zone `%s' under key `%s'\n",
2000 ac->label, 2003 ac->label,
2001 GNUNET_GNSRECORD_z2s (&ac->authority_info.gns_authority), 2004 GNUNET_GNSRECORD_z2s (&ac->authority_info.gns_authority),
2002 GNUNET_h2s (&query)); 2005 GNUNET_h2s (&query));
2003 GNUNET_GNSRECORD_query_from_public_key (auth,
2004 label,
2005 &query);
2006 start_dht_request (rh, &query); 2006 start_dht_request (rh, &query);
2007 return; 2007 return;
2008 } 2008 }