aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/gnunet-service-namestore.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-02 11:40:00 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-02 11:40:00 +0000
commit88652b999ab006d0e863234395415edcbcddfbfe (patch)
treed470e8786ab77715f19056e3a109962c556890ab /src/namestore/gnunet-service-namestore.c
parent9200ed3857ac29d11d4947c5eb231e9e3ee5ecfc (diff)
downloadgnunet-88652b999ab006d0e863234395415edcbcddfbfe.tar.gz
gnunet-88652b999ab006d0e863234395415edcbcddfbfe.zip
-delete does not work in the strong sense due to caching of the encrypted blocks, adjusting tests to reflect this
Diffstat (limited to 'src/namestore/gnunet-service-namestore.c')
-rw-r--r--src/namestore/gnunet-service-namestore.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/namestore/gnunet-service-namestore.c b/src/namestore/gnunet-service-namestore.c
index 1a675cb1f..4c64dcd29 100644
--- a/src/namestore/gnunet-service-namestore.c
+++ b/src/namestore/gnunet-service-namestore.c
@@ -646,8 +646,11 @@ handle_record_store (void *cls,
646 646
647 if ((rd_count == 0) && (GNUNET_NO == GSN_database->iterate_records (GSN_database->cls, &rp_msg->private_key, 0, NULL, 0))) 647 if ((rd_count == 0) && (GNUNET_NO == GSN_database->iterate_records (GSN_database->cls, &rp_msg->private_key, 0, NULL, 0)))
648 { 648 {
649 /* This name does not exist, so cannot be removed */ 649 /* This name does not exist, so cannot be removed */
650 res = GNUNET_NO; 650 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
651 "Name `%s' does not exist, no deletion required\n",
652 conv_name);
653 res = GNUNET_NO;
651 } 654 }
652 else 655 else
653 { 656 {