aboutsummaryrefslogtreecommitdiff
path: root/src/gns
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-11-22 09:15:07 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-11-22 09:15:07 +0000
commit91a07647c19ff8de90a93aec16d760dbe87699d7 (patch)
treeb0a939ebfe6189cf741a801a5a749ff5d7fe1379 /src/gns
parent0d9ce999faff935fe81b5b4696cc2f831c80d821 (diff)
downloadgnunet-91a07647c19ff8de90a93aec16d760dbe87699d7.tar.gz
gnunet-91a07647c19ff8de90a93aec16d760dbe87699d7.zip
rename namestore to namecache
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 bb0dde12b..e4bf3cb1c 100644
--- a/src/gns/gnunet-service-gns_resolver.c
+++ b/src/gns/gnunet-service-gns_resolver.c
@@ -2006,12 +2006,12 @@ handle_namestore_block_response (void *cls,
2006 2006
2007 2007
2008/** 2008/**
2009 * Lookup tail of our authority chain in the namestore. 2009 * Lookup tail of our authority chain in the namecache.
2010 * 2010 *
2011 * @param rh query we are processing 2011 * @param rh query we are processing
2012 */ 2012 */
2013static void 2013static void
2014recursive_gns_resolution_namestore (struct GNS_ResolverHandle *rh) 2014recursive_gns_resolution_namecache (struct GNS_ResolverHandle *rh)
2015{ 2015{
2016 struct AuthorityChain *ac = rh->ac_tail; 2016 struct AuthorityChain *ac = rh->ac_tail;
2017 struct GNUNET_HashCode query; 2017 struct GNUNET_HashCode query;
@@ -2054,7 +2054,7 @@ handle_revocation_result (void *cls,
2054 GNS_resolver_lookup_cancel (rh); 2054 GNS_resolver_lookup_cancel (rh);
2055 return; 2055 return;
2056 } 2056 }
2057 recursive_gns_resolution_namestore (rh); 2057 recursive_gns_resolution_namecache (rh);
2058} 2058}
2059 2059
2060 2060