aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gns_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-16 20:21:27 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-16 20:21:27 +0000
commitaccfd6bd85274da2f19e7230c8da6b273cfb2ece (patch)
tree60966194963795ff07b4da94f4efb6c46d6a23cf /src/gns/gns_api.c
parent3d670727232e79b7e49a1df7ba9260db4e5798a0 (diff)
downloadgnunet-accfd6bd85274da2f19e7230c8da6b273cfb2ece.tar.gz
gnunet-accfd6bd85274da2f19e7230c8da6b273cfb2ece.zip
-another renaming fest for GNUNET_NAMESTORE_ to GNUNET_GNSRECORD_ symbols that were moved
Diffstat (limited to 'src/gns/gns_api.c')
-rw-r--r--src/gns/gns_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gns/gns_api.c b/src/gns/gns_api.c
index 3d58922ad..95c2d54b3 100644
--- a/src/gns/gns_api.c
+++ b/src/gns/gns_api.c
@@ -366,7 +366,7 @@ process_lookup_reply (struct GNUNET_GNS_LookupRequest *qe,
366 struct GNUNET_GNS_Handle *handle = qe->gns_handle; 366 struct GNUNET_GNS_Handle *handle = qe->gns_handle;
367 struct PendingMessage *p = (struct PendingMessage *) &qe[1]; 367 struct PendingMessage *p = (struct PendingMessage *) &qe[1];
368 uint32_t rd_count = ntohl (msg->rd_count); 368 uint32_t rd_count = ntohl (msg->rd_count);
369 struct GNUNET_NAMESTORE_RecordData rd[rd_count]; 369 struct GNUNET_GNSRECORD_Data rd[rd_count];
370 size_t mlen; 370 size_t mlen;
371 371
372 if (GNUNET_YES != p->transmitted) 372 if (GNUNET_YES != p->transmitted)
@@ -378,7 +378,7 @@ process_lookup_reply (struct GNUNET_GNS_LookupRequest *qe,
378 } 378 }
379 mlen = ntohs (msg->header.size); 379 mlen = ntohs (msg->header.size);
380 mlen -= sizeof (struct GNUNET_GNS_ClientLookupResultMessage); 380 mlen -= sizeof (struct GNUNET_GNS_ClientLookupResultMessage);
381 if (GNUNET_SYSERR == GNUNET_NAMESTORE_records_deserialize (mlen, 381 if (GNUNET_SYSERR == GNUNET_GNSRECORD_records_deserialize (mlen,
382 (const char*) &msg[1], 382 (const char*) &msg[1],
383 rd_count, 383 rd_count,
384 rd)) 384 rd))