aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/gnunet-namestore-fcfsd.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-16 11:39:55 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-16 11:39:55 +0000
commitb3db33d5679f3d4f05802d360da3d8a2fd7192f1 (patch)
treeb1ad38add710bceba3b13261174cfb0507bcf0c2 /src/namestore/gnunet-namestore-fcfsd.c
parentb6bfed8309e6b9b3286b8f608ad899bfb0a97205 (diff)
downloadgnunet-b3db33d5679f3d4f05802d360da3d8a2fd7192f1.tar.gz
gnunet-b3db33d5679f3d4f05802d360da3d8a2fd7192f1.zip
-rename fest for symbols moved from GNUNET_NAMESTORE_ to new GNUNET_GNSRECORD_ library
Diffstat (limited to 'src/namestore/gnunet-namestore-fcfsd.c')
-rw-r--r--src/namestore/gnunet-namestore-fcfsd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/namestore/gnunet-namestore-fcfsd.c b/src/namestore/gnunet-namestore-fcfsd.c
index 14f95c911..701cdd558 100644
--- a/src/namestore/gnunet-namestore-fcfsd.c
+++ b/src/namestore/gnunet-namestore-fcfsd.c
@@ -287,14 +287,14 @@ iterate_cb (void *cls,
287 return; 287 return;
288 } 288 }
289 289
290 if (GNUNET_NAMESTORE_TYPE_PKEY != rd->record_type) 290 if (GNUNET_GNSRECORD_TYPE_PKEY != rd->record_type)
291 { 291 {
292 GNUNET_NAMESTORE_zone_iterator_next (zr->list_it); 292 GNUNET_NAMESTORE_zone_iterator_next (zr->list_it);
293 return; 293 return;
294 } 294 }
295 295
296 bytes_free = zr->buf_len - zr->write_offset; 296 bytes_free = zr->buf_len - zr->write_offset;
297 pkey = GNUNET_NAMESTORE_value_to_string (rd->record_type, 297 pkey = GNUNET_GNSRECORD_value_to_string (rd->record_type,
298 rd->data, 298 rd->data,
299 rd->data_size); 299 rd->data_size);
300 300
@@ -529,7 +529,7 @@ zone_to_name_cb (void *cls,
529 r.data = &pub; 529 r.data = &pub;
530 r.data_size = sizeof (pub); 530 r.data_size = sizeof (pub);
531 r.expiration_time = UINT64_MAX; 531 r.expiration_time = UINT64_MAX;
532 r.record_type = GNUNET_NAMESTORE_TYPE_PKEY; 532 r.record_type = GNUNET_GNSRECORD_TYPE_PKEY;
533 r.flags = GNUNET_NAMESTORE_RF_NONE; 533 r.flags = GNUNET_NAMESTORE_RF_NONE;
534 request->qe = GNUNET_NAMESTORE_records_store (ns, 534 request->qe = GNUNET_NAMESTORE_records_store (ns,
535 &fcfs_zone_pkey, 535 &fcfs_zone_pkey,