aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/plugin_namestore_sqlite.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/plugin_namestore_sqlite.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/plugin_namestore_sqlite.c')
-rw-r--r--src/namestore/plugin_namestore_sqlite.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/namestore/plugin_namestore_sqlite.c b/src/namestore/plugin_namestore_sqlite.c
index f2f884290..4c040cc97 100644
--- a/src/namestore/plugin_namestore_sqlite.c
+++ b/src/namestore/plugin_namestore_sqlite.c
@@ -695,7 +695,10 @@ namestore_sqlite_store_records (void *cls,
695 switch (n) 695 switch (n)
696 { 696 {
697 case SQLITE_DONE: 697 case SQLITE_DONE:
698 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "sqlite", "Record stored\n"); 698 if (0 != rd_count)
699 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "sqlite", "Record stored\n");
700 else
701 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "sqlite", "Record deleted\n");
699 return GNUNET_OK; 702 return GNUNET_OK;
700 case SQLITE_BUSY: 703 case SQLITE_BUSY:
701 LOG_SQLITE (plugin, GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK, 704 LOG_SQLITE (plugin, GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,