diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-08-11 21:21:56 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-08-11 21:21:56 +0000 |
commit | 3d7fefedc9ba60bd8e8448efe8b628446d958536 (patch) | |
tree | 61ce41a52cd6e7232cead77818ef265993b2427e /src/gns/plugin_block_gns.c | |
parent | 4a0398474db197abed243a123fb971fbeeffab4b (diff) |
changing time measurement from milliseconds to microseconds
Diffstat (limited to 'src/gns/plugin_block_gns.c')
-rw-r--r-- | src/gns/plugin_block_gns.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gns/plugin_block_gns.c b/src/gns/plugin_block_gns.c index ffc38c99be..4d12f02dfb 100644 --- a/src/gns/plugin_block_gns.c +++ b/src/gns/plugin_block_gns.c @@ -166,11 +166,12 @@ block_plugin_gns_evaluate (void *cls, enum GNUNET_BLOCK_Type type, record_match++; } } - et.abs_value = exp; + et.abs_value_us = exp; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Verifying signature of %d records for name %s with expiration of %u\n", - rd_count, name, et.abs_value); + "Verifying signature of %d records for name %s with expiration of %s\n", + rd_count, name, + GNUNET_STRINGS_absolute_time_to_string (et)); if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature (&nrb->public_key, |