diff options
Diffstat (limited to 'src/mint-tools/taler-mint-keyup.c')
| -rw-r--r-- | src/mint-tools/taler-mint-keyup.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mint-tools/taler-mint-keyup.c b/src/mint-tools/taler-mint-keyup.c index 5eff6f58..e9de07ef 100644 --- a/src/mint-tools/taler-mint-keyup.c +++ b/src/mint-tools/taler-mint-keyup.c @@ -366,9 +366,8 @@ get_anchor_iter (void *cls,              filename);      return GNUNET_OK;    } -  if (stamp.abs_value_us <= now.abs_value_us) -    *anchor = GNUNET_TIME_absolute_max (stamp, -                                        *anchor); +  *anchor = GNUNET_TIME_absolute_max (stamp, +                                      *anchor);    return GNUNET_OK;  } @@ -419,7 +418,7 @@ get_anchor (const char *dir,                  "Existing keys are way too old, starting with fresh key set.\n");      *anchor = now;    } -  else if (anchor->abs_value_us != now.abs_value_us) // Also odd... +  else if (anchor->abs_value_us != now.abs_value_us)    {      /* Real starting time is the last start time + duration - overlap */      *anchor = GNUNET_TIME_absolute_add (*anchor,  | 
