From 64b7126234ed5765a63867e38d120f35630717dd Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Tue, 20 Sep 2016 14:30:38 +0200 Subject: strtol -> strtoll, which made the anchor (see signkey generation algorithm) always point to the 70s, so new signkeys were always generated --- src/exchange-tools/taler-exchange-keyup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c index d039c427f..9e2500d2a 100644 --- 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, -- cgit v1.2.3