aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/gnunet-namestore.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-05-27 21:46:41 +0000
committerChristian Grothoff <christian@grothoff.org>2012-05-27 21:46:41 +0000
commit46a63dc665f31fa7d42639ab6adabbdb1af239c8 (patch)
tree6c3e58a7f57d6d3ee44aa6cd2808b5458d75de4b /src/namestore/gnunet-namestore.c
parent4848a679018f9e864cd277345191ad8f1000b5ff (diff)
downloadgnunet-46a63dc665f31fa7d42639ab6adabbdb1af239c8.tar.gz
gnunet-46a63dc665f31fa7d42639ab6adabbdb1af239c8.zip
renaming GNUNET_TIME_relative_get_forever and GNUNET_TIME_absolute_get_forever methods, adding underscore, to make it clear that the respective #defines should be used instead; replacing use of direct function calls with respective macros where applicable; adding additional GNUNET_TIME_relative_get_xxx-functions to avoid calls to GNUNET_TIME_relative_multiply, which turn out to have gotten performance-relevant
Diffstat (limited to 'src/namestore/gnunet-namestore.c')
-rw-r--r--src/namestore/gnunet-namestore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/namestore/gnunet-namestore.c b/src/namestore/gnunet-namestore.c
index 6bde4d90e..a0d1de10a 100644
--- a/src/namestore/gnunet-namestore.c
+++ b/src/namestore/gnunet-namestore.c
@@ -356,7 +356,7 @@ run (void *cls, char *const *args, const char *cfgfile,
356 { 356 {
357 if (0 == strcmp (expirationstring, "never")) 357 if (0 == strcmp (expirationstring, "never"))
358 { 358 {
359 etime = GNUNET_TIME_relative_get_forever(); 359 etime = GNUNET_TIME_UNIT_FOREVER_REL;
360 } 360 }
361 else if (GNUNET_OK != 361 else if (GNUNET_OK !=
362 GNUNET_STRINGS_fancy_time_to_relative (expirationstring, 362 GNUNET_STRINGS_fancy_time_to_relative (expirationstring,