aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_push.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-11 21:21:56 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-11 21:21:56 +0000
commit3d7fefedc9ba60bd8e8448efe8b628446d958536 (patch)
tree61ce41a52cd6e7232cead77818ef265993b2427e /src/fs/gnunet-service-fs_push.c
parent4a0398474db197abed243a123fb971fbeeffab4b (diff)
downloadgnunet-3d7fefedc9ba60bd8e8448efe8b628446d958536.tar.gz
gnunet-3d7fefedc9ba60bd8e8448efe8b628446d958536.zip
changing time measurement from milliseconds to microseconds
Diffstat (limited to 'src/fs/gnunet-service-fs_push.c')
-rw-r--r--src/fs/gnunet-service-fs_push.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fs/gnunet-service-fs_push.c b/src/fs/gnunet-service-fs_push.c
index e7fbbdcaf..70c13f49f 100644
--- a/src/fs/gnunet-service-fs_push.c
+++ b/src/fs/gnunet-service-fs_push.c
@@ -482,8 +482,8 @@ process_migration_content (void *cls, const struct GNUNET_HashCode * key, size_t
482 consider_gathering (); 482 consider_gathering ();
483 return; 483 return;
484 } 484 }
485 if (GNUNET_TIME_absolute_get_remaining (expiration).rel_value < 485 if (GNUNET_TIME_absolute_get_remaining (expiration).rel_value_us <
486 MIN_MIGRATION_CONTENT_LIFETIME.rel_value) 486 MIN_MIGRATION_CONTENT_LIFETIME.rel_value_us)
487 { 487 {
488 /* content will expire soon, don't bother */ 488 /* content will expire soon, don't bother */
489 consider_gathering (); 489 consider_gathering ();