diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-27 13:53:26 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-27 13:53:26 +0100 |
commit | 373a5f96a7d2def03e11ef9a2055893e807ce9ab (patch) | |
tree | 80c522d5c3644f2ff26ebf3a1c549f53b085665b /src/exchange-tools/taler-exchange-keyup.c | |
parent | e8c8efe5ec093428a0af300931f9147732c91fa9 (diff) |
fix warnings
Diffstat (limited to 'src/exchange-tools/taler-exchange-keyup.c')
-rw-r--r-- | src/exchange-tools/taler-exchange-keyup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c index 645d73cda..70f74aa47 100644 --- a/src/exchange-tools/taler-exchange-keyup.c +++ b/src/exchange-tools/taler-exchange-keyup.c @@ -767,7 +767,7 @@ create_denomkey_issue ( GNUNET_assert (NULL != dki->denom_priv.rsa_private_key); dki->denom_pub.rsa_public_key = GNUNET_CRYPTO_rsa_private_key_get_public ( - dki->denom_priv.rsa_private_key); + dki->denom_priv.rsa_private_key); GNUNET_CRYPTO_rsa_public_key_hash (dki->denom_pub.rsa_public_key, &dki->issue.properties.denom_hash); dki->issue.properties.master = master_public_key; @@ -1140,6 +1140,7 @@ check_revocation_regeneration ( struct GNUNET_TIME_Absolute now; struct GNUNET_TIME_Absolute withdraw_end; + (void) alias; if (0 != GNUNET_memcmp (denom_hash, &dki->issue.properties.denom_hash)) |