aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-07-25 21:19:43 +0000
committerChristian Grothoff <christian@grothoff.org>2009-07-25 21:19:43 +0000
commit85b502cf01747eff2acaaa0bdea79321c4c28614 (patch)
treed934a0df5179e438460bd52969df401fbeecb9cf /src/datastore
parent4f3705cbfef52322292ce8b60f1d5326825f8606 (diff)
downloadgnunet-85b502cf01747eff2acaaa0bdea79321c4c28614.tar.gz
gnunet-85b502cf01747eff2acaaa0bdea79321c4c28614.zip
update bf
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/gnunet-service-datastore.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/datastore/gnunet-service-datastore.c b/src/datastore/gnunet-service-datastore.c
index 22ae6feb5..b0719b69b 100644
--- a/src/datastore/gnunet-service-datastore.c
+++ b/src/datastore/gnunet-service-datastore.c
@@ -281,6 +281,8 @@ expired_processor (void *cls,
281 "Deleting content that expired %llu ms ago\n", 281 "Deleting content that expired %llu ms ago\n",
282 (unsigned long long) (now.value - expiration.value)); 282 (unsigned long long) (now.value - expiration.value));
283#endif 283#endif
284 GNUNET_CONTAINER_bloomfilter_remove (filter,
285 key);
284 return GNUNET_NO; /* delete */ 286 return GNUNET_NO; /* delete */
285} 287}
286 288
@@ -356,6 +358,8 @@ manage (void *cls,
356 size + GNUNET_DATASTORE_ENTRY_OVERHEAD, 358 size + GNUNET_DATASTORE_ENTRY_OVERHEAD,
357 *need); 359 *need);
358#endif 360#endif
361 GNUNET_CONTAINER_bloomfilter_remove (filter,
362 key);
359 return GNUNET_NO; 363 return GNUNET_NO;
360} 364}
361 365