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 | |
| parent | e8c8efe5ec093428a0af300931f9147732c91fa9 (diff) | |
fix warnings
| -rw-r--r-- | src/exchange-tools/taler-exchange-keyup.c | 3 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_deposits_get.c | 1 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c index 645d73cd..70f74aa4 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)) diff --git a/src/exchange/taler-exchange-httpd_deposits_get.c b/src/exchange/taler-exchange-httpd_deposits_get.c index 8a0e1494..1c9c58d1 100644 --- a/src/exchange/taler-exchange-httpd_deposits_get.c +++ b/src/exchange/taler-exchange-httpd_deposits_get.c @@ -322,6 +322,7 @@ TEH_handler_deposits_get (const struct TEH_RequestHandler *rh,      .purpose.purpose = htonl (TALER_SIGNATURE_MERCHANT_TRACK_TRANSACTION)    }; +  (void) rh;    if (GNUNET_OK !=        GNUNET_STRINGS_string_to_data (args[0],                                       strlen (args[0]),  | 
