aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gns/gns_api.c4
-rw-r--r--src/gns/gnunet-gns.c2
-rw-r--r--src/include/gnunet_gns_service.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/gns/gns_api.c b/src/gns/gns_api.c
index ac7f87241..ee2c59843 100644
--- a/src/gns/gns_api.c
+++ b/src/gns/gns_api.c
@@ -641,7 +641,7 @@ get_request_id (struct GNUNET_GNS_Handle *h)
641 * @param name the name to look up 641 * @param name the name to look up
642 * @param zone the zone to start the resolution in 642 * @param zone the zone to start the resolution in
643 * @param type the record type to look up 643 * @param type the record type to look up
644 * @param only_cached GNUNET_NO to only check locally not DHT for performance 644 * @param only_cached GNUNET_YES to only check locally not DHT for performance
645 * @param shorten_key the private key of the shorten zone (can be NULL) 645 * @param shorten_key the private key of the shorten zone (can be NULL)
646 * @param proc processor to call on result 646 * @param proc processor to call on result
647 * @param proc_cls closure for processor 647 * @param proc_cls closure for processor
@@ -739,7 +739,7 @@ GNUNET_GNS_lookup_zone (struct GNUNET_GNS_Handle *handle,
739 * @param handle handle to the GNS service 739 * @param handle handle to the GNS service
740 * @param name the name to look up 740 * @param name the name to look up
741 * @param type the record type to look up 741 * @param type the record type to look up
742 * @param only_cached GNUNET_NO to only check locally not DHT for performance 742 * @param only_cached GNUNET_YES to only check locally not DHT for performance
743 * @param shorten_key the private key of the shorten zone (can be NULL) 743 * @param shorten_key the private key of the shorten zone (can be NULL)
744 * @param proc processor to call on result 744 * @param proc processor to call on result
745 * @param proc_cls closure for processor 745 * @param proc_cls closure for processor
diff --git a/src/gns/gnunet-gns.c b/src/gns/gnunet-gns.c
index 7d2f8a8b6..6643317da 100644
--- a/src/gns/gnunet-gns.c
+++ b/src/gns/gnunet-gns.c
@@ -269,7 +269,7 @@ run (void *cls, char *const *args, const char *cfgfile,
269 GNUNET_GNS_lookup_zone (gns, lookup_name, 269 GNUNET_GNS_lookup_zone (gns, lookup_name,
270 zone, 270 zone,
271 rtype, 271 rtype,
272 GNUNET_YES, //Use DHT 272 GNUNET_NO, //Use DHT
273 shorten_key, 273 shorten_key,
274 &process_lookup_result, lookup_name); 274 &process_lookup_result, lookup_name);
275 } 275 }
diff --git a/src/include/gnunet_gns_service.h b/src/include/gnunet_gns_service.h
index 029ef9f51..ffd0224c8 100644
--- a/src/include/gnunet_gns_service.h
+++ b/src/include/gnunet_gns_service.h
@@ -178,7 +178,7 @@ GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle,
178 * @param name the name to look up 178 * @param name the name to look up
179 * @param zone the zone to start the resolution in 179 * @param zone the zone to start the resolution in
180 * @param type the GNUNET_GNS_RecordType to look for 180 * @param type the GNUNET_GNS_RecordType to look for
181 * @param only_cached GNUNET_NO to only check locally not DHT for performance 181 * @param only_cached GNUNET_YES to only check locally not DHT for performance
182 * @param shorten_key the private key of the shorten zone (can be NULL) 182 * @param shorten_key the private key of the shorten zone (can be NULL)
183 * @param proc function to call on result 183 * @param proc function to call on result
184 * @param proc_cls closure for processor 184 * @param proc_cls closure for processor