aboutsummaryrefslogtreecommitdiff
path: root/src/gns
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2014-02-16 20:37:03 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2014-02-16 20:37:03 +0000
commitd7c754d2a70afa0acd49610996a30f0238bbdc0e (patch)
tree8b1d7ddd2b2655ae3d03a0d7cc074e49c045580e /src/gns
parent6d8512e66e78b06e4d92b1caec44dd68e8605276 (diff)
downloadgnunet-d7c754d2a70afa0acd49610996a30f0238bbdc0e.tar.gz
gnunet-d7c754d2a70afa0acd49610996a30f0238bbdc0e.zip
fix only cache variable long/short
Diffstat (limited to 'src/gns')
-rw-r--r--src/gns/gns_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gns/gns_api.c b/src/gns/gns_api.c
index 0bed57d54..66bd005cf 100644
--- a/src/gns/gns_api.c
+++ b/src/gns/gns_api.c
@@ -576,7 +576,7 @@ GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle,
576 lookup_msg->header.type = htons (GNUNET_MESSAGE_TYPE_GNS_LOOKUP); 576 lookup_msg->header.type = htons (GNUNET_MESSAGE_TYPE_GNS_LOOKUP);
577 lookup_msg->header.size = htons (msize); 577 lookup_msg->header.size = htons (msize);
578 lookup_msg->id = htonl (lr->r_id); 578 lookup_msg->id = htonl (lr->r_id);
579 lookup_msg->only_cached = htonl (only_cached); 579 lookup_msg->only_cached = htons (only_cached);
580 lookup_msg->zone = *zone; 580 lookup_msg->zone = *zone;
581 lookup_msg->type = htonl (type); 581 lookup_msg->type = htonl (type);
582 if (NULL != shorten_zone_key) 582 if (NULL != shorten_zone_key)