commit 64b7126234ed5765a63867e38d120f35630717dd
parent b3c4803c55c7ba39827e6d3a87c34ee79bbae120
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Tue, 20 Sep 2016 14:30:38 +0200
strtol -> strtoll, which made the anchor (see signkey generation algorithm)
always point to the 70s, so new signkeys were always generated
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c
@@ -354,9 +354,9 @@ get_anchor_iter (void *cls,
char *end = NULL;
base = GNUNET_STRINGS_get_short_name (filename);
- stamp.abs_value_us = strtol (base,
- &end,
- 10);
+ stamp.abs_value_us = strtoll (base,
+ &end,
+ 10);
if ((NULL == end) || (0 != *end))
{
fprintf(stderr,