diff options
Diffstat (limited to 'src/mint/taler-mint-httpd_refresh.c')
-rw-r--r-- | src/mint/taler-mint-httpd_refresh.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mint/taler-mint-httpd_refresh.c b/src/mint/taler-mint-httpd_refresh.c index 42a224f32..057414a8f 100644 --- a/src/mint/taler-mint-httpd_refresh.c +++ b/src/mint/taler-mint-httpd_refresh.c | |||
@@ -251,7 +251,7 @@ TALER_MINT_handler_refresh_melt (struct RequestHandler *rh, | |||
251 | json_t *new_denoms; | 251 | json_t *new_denoms; |
252 | unsigned int num_new_denoms; | 252 | unsigned int num_new_denoms; |
253 | unsigned int i; | 253 | unsigned int i; |
254 | struct GNUNET_CRYPTO_rsa_PublicKey *denom_pubs; | 254 | struct GNUNET_CRYPTO_rsa_PublicKey **denom_pubs; |
255 | json_t *melt_coins; | 255 | json_t *melt_coins; |
256 | struct TALER_CoinPublicInfo *coin_public_infos; | 256 | struct TALER_CoinPublicInfo *coin_public_infos; |
257 | unsigned int coin_count; | 257 | unsigned int coin_count; |
@@ -541,7 +541,7 @@ TALER_MINT_handler_refresh_commit (struct RequestHandler *rh, | |||
541 | sizeof (struct RefreshCommitCoin)); | 541 | sizeof (struct RefreshCommitCoin)); |
542 | for (j = 0; j < num_newcoins; j++) | 542 | for (j = 0; j < num_newcoins; j++) |
543 | { | 543 | { |
544 | char *link_end; | 544 | char *link_enc; |
545 | size_t link_enc_size; | 545 | size_t link_enc_size; |
546 | 546 | ||
547 | res = GNUNET_MINT_parse_navigate_json (connection, root, | 547 | res = GNUNET_MINT_parse_navigate_json (connection, root, |
@@ -583,8 +583,8 @@ TALER_MINT_handler_refresh_commit (struct RequestHandler *rh, | |||
583 | 583 | ||
584 | 584 | ||
585 | GNUNET_CRYPTO_hash_context_read (hash_context, | 585 | GNUNET_CRYPTO_hash_context_read (hash_context, |
586 | commit_coin[i][j].link_enc, | 586 | link_enc, |
587 | TALER_REFRESH_LINK_LENGTH); | 587 | link_enc_size); |
588 | } | 588 | } |
589 | } | 589 | } |
590 | 590 | ||
@@ -620,7 +620,7 @@ TALER_MINT_handler_refresh_commit (struct RequestHandler *rh, | |||
620 | JNAV_INDEX, (int) i, | 620 | JNAV_INDEX, (int) i, |
621 | JNAV_INDEX, (int) j, | 621 | JNAV_INDEX, (int) j, |
622 | JNAV_RET_DATA, | 622 | JNAV_RET_DATA, |
623 | &commit_link[i][j].shared_secret, | 623 | &commit_link[i][j].shared_secret_enc, |
624 | sizeof (struct GNUNET_HashCode)); | 624 | sizeof (struct GNUNET_HashCode)); |
625 | 625 | ||
626 | if (GNUNET_OK != res) | 626 | if (GNUNET_OK != res) |
@@ -631,7 +631,7 @@ TALER_MINT_handler_refresh_commit (struct RequestHandler *rh, | |||
631 | } | 631 | } |
632 | 632 | ||
633 | GNUNET_CRYPTO_hash_context_read (hash_context, | 633 | GNUNET_CRYPTO_hash_context_read (hash_context, |
634 | &commit_link[i][j].shared_secret, | 634 | &commit_link[i][j].shared_secret_enc, |
635 | sizeof (struct GNUNET_HashCode)); | 635 | sizeof (struct GNUNET_HashCode)); |
636 | } | 636 | } |
637 | } | 637 | } |