aboutsummaryrefslogtreecommitdiff
path: root/src/namecache
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-04-23 15:01:43 +0200
committerChristian Grothoff <christian@grothoff.org>2018-04-23 15:01:43 +0200
commitd6e1cea9a8b3a1eee91e52eb46adc82e2005b975 (patch)
tree8184a8531c8cd916e2de4d7f505dc60ecefcb9e8 /src/namecache
parent7eb7bd8666aeb2e855cd22b1ea7f44b87bb60400 (diff)
downloadgnunet-d6e1cea9a8b3a1eee91e52eb46adc82e2005b975.tar.gz
gnunet-d6e1cea9a8b3a1eee91e52eb46adc82e2005b975.zip
more incremental processing of zoneimporter
Diffstat (limited to 'src/namecache')
-rw-r--r--src/namecache/plugin_namecache_sqlite.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/namecache/plugin_namecache_sqlite.c b/src/namecache/plugin_namecache_sqlite.c
index 37d6d3b62..6f5f2d952 100644
--- a/src/namecache/plugin_namecache_sqlite.c
+++ b/src/namecache/plugin_namecache_sqlite.c
@@ -411,10 +411,10 @@ namecache_sqlite_cache_block (void *cls,
411 GNUNET_CRYPTO_hash (&block->derived_key, 411 GNUNET_CRYPTO_hash (&block->derived_key,
412 sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey), 412 sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey),
413 &query); 413 &query);
414 fprintf (stderr, 414 fprintf (stderr, // GNUNET_log (GNUNET_ERROR_TYPE_INFO,
415 "Caching new version of block %s (expires %llu)\n", 415 "Caching new version of block %s (expires %s)\n",
416 GNUNET_h2s (&query), 416 GNUNET_h2s (&query),
417 (unsigned long long) expiration.abs_value_us); 417 GNUNET_STRINGS_absolute_time_to_string (expiration));
418 expiration = GNUNET_TIME_absolute_ntoh (block->expiration_time); 418 expiration = GNUNET_TIME_absolute_ntoh (block->expiration_time);
419 if (block_size > 64 * 65536) 419 if (block_size > 64 * 65536)
420 { 420 {