diff options
| author | Christian Grothoff <christian@grothoff.org> | 2021-04-12 20:55:55 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2021-04-12 20:55:55 +0200 | 
| commit | 176b0edaebca0bfa1011321b9ad609dc939fdcbf (patch) | |
| tree | b23237371c43f0613f18668b7958e59308024435 | |
| parent | 245e757438c9632affa3c042258c59b096183d10 (diff) | |
fix bogus check
| -rw-r--r-- | src/exchange/taler-exchange-httpd_keys.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/src/exchange/taler-exchange-httpd_keys.c b/src/exchange/taler-exchange-httpd_keys.c index 1acffb1a..50d700a8 100644 --- a/src/exchange/taler-exchange-httpd_keys.c +++ b/src/exchange/taler-exchange-httpd_keys.c @@ -701,8 +701,7 @@ helper_esign_cb (    {      /* should be just an update (revocation!), so update existing entry */      hsk->validity_duration = validity_duration; -    GNUNET_break (start_time.abs_value_us == -                  hsk->start_time.abs_value_us); +    GNUNET_break (0 == start_time.abs_value_us);      return;    }    GNUNET_assert (NULL != sm_pub); | 
