diff options
author | wachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-10-27 09:39:41 +0000 |
---|---|---|
committer | wachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-10-27 09:39:41 +0000 |
commit | ceb7c2de3a076d6e06dc747ce233ae4ff71f6059 (patch) | |
tree | f24e01777b791d101225c999dd95cb2820612aa5 /src/datastore/plugin_datastore_mysql.c | |
parent | f7dd9ab9e8ba65a462bd25ca1da57b5710f3c5b3 (diff) |
Refactoring gnunet time
git-svn-id: https://gnunet.org/svn/gnunet@13419 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/datastore/plugin_datastore_mysql.c')
-rw-r--r-- | src/datastore/plugin_datastore_mysql.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c index 150dc665c2..0aefbb75d2 100644 --- a/src/datastore/plugin_datastore_mysql.c +++ b/src/datastore/plugin_datastore_mysql.c @@ -1062,7 +1062,7 @@ iterator_helper_prepare (void *cls, &nrc->last_vkey, GNUNET_YES, MYSQL_TYPE_LONGLONG, - &nrc->now.value, + &nrc->now.abs_value, GNUNET_YES, MYSQL_TYPE_LONGLONG, &nrc->last_expire, @@ -1071,7 +1071,7 @@ iterator_helper_prepare (void *cls, &nrc->last_vkey, GNUNET_YES, MYSQL_TYPE_LONGLONG, - &nrc->now.value, + &nrc->now.abs_value, GNUNET_YES, -1); break; default: @@ -1199,7 +1199,7 @@ mysql_next_request_cont (void *next_cls, exp); #endif GNUNET_assert (nrc->plugin->next_task == GNUNET_SCHEDULER_NO_TASK); - expiration.value = exp; + expiration.abs_value = exp; ret = nrc->dviter (nrc->dviter_cls, nrc, &key, @@ -1368,7 +1368,7 @@ mysql_plugin_put (void *cls, unsigned int itype = type; unsigned int ipriority = priority; unsigned int ianonymity = anonymity; - unsigned long long lexpiration = expiration.value; + unsigned long long lexpiration = expiration.abs_value; unsigned long hashSize; unsigned long hashSize2; unsigned long long vkey; @@ -1720,7 +1720,7 @@ mysql_plugin_update (void *cls, { struct Plugin *plugin = cls; unsigned long long vkey = uid; - unsigned long long lexpire = expire.value; + unsigned long long lexpire = expire.abs_value; int ret; #if DEBUG_MYSQL |