summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-27 20:51:12 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-27 20:51:12 +0200
commite9c9ca736f6a9cd63695f6e425ad801658081991 (patch)
treea76eb419914ff95e7ec5ece71374ff03e086dd25
parent9e55caf92c55fb540370a8f2ab05bbedf0a7fe07 (diff)
downloadexchange-e9c9ca736f6a9cd63695f6e425ad801658081991.tar.gz
exchange-e9c9ca736f6a9cd63695f6e425ad801658081991.tar.bz2
exchange-e9c9ca736f6a9cd63695f6e425ad801658081991.zip
fix loop that checks link response
-rw-r--r--src/exchange-lib/testing_api_cmd_refresh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchange-lib/testing_api_cmd_refresh.c b/src/exchange-lib/testing_api_cmd_refresh.c
index 23fb4715b..6075ad1c6 100644
--- a/src/exchange-lib/testing_api_cmd_refresh.c
+++ b/src/exchange-lib/testing_api_cmd_refresh.c
@@ -627,14 +627,14 @@ link_cb (void *cls,
for (unsigned int j=0;j<num_coins;j++)
{
if ( (0 == memcmp
- (&coin_privs[i], &fc[i].coin_priv,
+ (&coin_privs[i], &fc[j].coin_priv,
sizeof (struct TALER_CoinSpendPrivateKeyP))) &&
(0 == GNUNET_CRYPTO_rsa_signature_cmp
(fc[i].sig.rsa_signature,
- sigs[i].rsa_signature)) &&
+ sigs[j].rsa_signature)) &&
(0 == GNUNET_CRYPTO_rsa_public_key_cmp
(fc[i].pk->key.rsa_public_key,
- pubs[i].rsa_public_key)) )
+ pubs[j].rsa_public_key)) )
{
found++;
break;