aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2016-03-07 15:11:52 +0000
committerGabor X Toth <*@tg-x.net>2016-03-07 15:11:52 +0000
commit1d2cec96289a1bd1600aa39dbc8ab422298e0973 (patch)
treef2963984d1b74f1332b0816c3c8d83a2c2f50a7c /src
parent95897f18b16b8900b43b9181da11eb559ff7096e (diff)
downloadgnunet-1d2cec96289a1bd1600aa39dbc8ab422298e0973.tar.gz
gnunet-1d2cec96289a1bd1600aa39dbc8ab422298e0973.zip
social: todo
Diffstat (limited to 'src')
-rw-r--r--src/social/gnunet-service-social.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/social/gnunet-service-social.c b/src/social/gnunet-service-social.c
index 04042784c..98b1d4b59 100644
--- a/src/social/gnunet-service-social.c
+++ b/src/social/gnunet-service-social.c
@@ -3129,6 +3129,7 @@ client_recv_zone_add_place (void *cls, struct GNUNET_SERVER_Client *client,
3129 GNUNET_NAMESTORE_records_store (namestore, &ego->key, 3129 GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3130 name, 1, &rd, 3130 name, 1, &rd,
3131 namestore_recv_records_store_result, ocls); 3131 namestore_recv_records_store_result, ocls);
3132 /** @todo refresh stored records later */
3132 } 3133 }
3133 GNUNET_SERVER_receive_done (client, GNUNET_OK); 3134 GNUNET_SERVER_receive_done (client, GNUNET_OK);
3134} 3135}
@@ -3176,8 +3177,9 @@ client_recv_zone_add_nym (void *cls, struct GNUNET_SERVER_Client *client,
3176 ocls->client = client; 3177 ocls->client = client;
3177 ocls->op_id = nreq->op_id; 3178 ocls->op_id = nreq->op_id;
3178 GNUNET_NAMESTORE_records_store (namestore, &ego->key, 3179 GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3179 name, 1, &rd, 3180 name, 1, &rd,
3180 namestore_recv_records_store_result, ocls); 3181 namestore_recv_records_store_result, ocls);
3182 /** @todo refresh stored records later */
3181 } 3183 }
3182 GNUNET_SERVER_receive_done (client, GNUNET_OK); 3184 GNUNET_SERVER_receive_done (client, GNUNET_OK);
3183} 3185}