aboutsummaryrefslogtreecommitdiff
path: root/src/datacache
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-06-25 19:36:44 +0200
committerChristian Grothoff <christian@grothoff.org>2017-06-25 19:36:44 +0200
commit981cc68a63c71ba11aaca84f559f3cf86a29c0ec (patch)
tree5196b264c461b609a128188e78a42b9972c845c3 /src/datacache
parent169f1c8c1db0a6d8cebf308ced1de064eadcdc4d (diff)
downloadgnunet-981cc68a63c71ba11aaca84f559f3cf86a29c0ec.tar.gz
gnunet-981cc68a63c71ba11aaca84f559f3cf86a29c0ec.zip
fix configuration parsing issue with inlines from configuration not in cwd
Diffstat (limited to 'src/datacache')
-rw-r--r--src/datacache/datacache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/datacache/datacache.c b/src/datacache/datacache.c
index a1869a8bd..92cc40b53 100644
--- a/src/datacache/datacache.c
+++ b/src/datacache/datacache.c
@@ -185,9 +185,9 @@ GNUNET_DATACACHE_create (const struct GNUNET_CONFIGURATION_Handle *cfg,
185 } 185 }
186 if (NULL == ret->filter) 186 if (NULL == ret->filter)
187 { 187 {
188 ret->filter = GNUNET_CONTAINER_bloomfilter_init (NULL, 188 ret->filter = GNUNET_CONTAINER_bloomfilter_init (NULL,
189 bf_size, 189 bf_size,
190 5); /* approx. 3% false positives at max use */ 190 5); /* approx. 3% false positives at max use */
191 } 191 }
192 } 192 }
193 ret->stats = GNUNET_STATISTICS_create ("datacache", cfg); 193 ret->stats = GNUNET_STATISTICS_create ("datacache", cfg);