aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/exchange_api_link.c6
-rw-r--r--src/lib/exchange_api_refresh_common.c6
-rw-r--r--src/lib/exchange_api_refreshes_reveal.c8
3 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/exchange_api_link.c b/src/lib/exchange_api_link.c
index 86637683b..f408b87d0 100644
--- a/src/lib/exchange_api_link.c
+++ b/src/lib/exchange_api_link.c
@@ -114,7 +114,7 @@ parse_link_coin (const struct TALER_EXCHANGE_LinkHandle *lh,
struct TALER_TransferSecretP secret;
struct TALER_PlanchetDetail pd;
struct TALER_CoinPubHashP c_hash;
- struct TALER_AgeCommitmentHash *pach = NULL;
+ struct TALER_AgeCommitmentHash *pah = NULL;
/* parse reply */
if (GNUNET_OK !=
@@ -155,7 +155,7 @@ parse_link_coin (const struct TALER_EXCHANGE_LinkHandle *lh,
&lci->h_age_commitment);
lci->has_age_commitment = true;
- pach = &lci->h_age_commitment;
+ pah = &lci->h_age_commitment;
}
if (GNUNET_OK !=
@@ -164,7 +164,7 @@ parse_link_coin (const struct TALER_EXCHANGE_LinkHandle *lh,
&alg_values,
&bks,
&lci->coin_priv,
- pach,
+ pah,
&c_hash,
&pd))
{
diff --git a/src/lib/exchange_api_refresh_common.c b/src/lib/exchange_api_refresh_common.c
index 04c580227..0a6665b55 100644
--- a/src/lib/exchange_api_refresh_common.c
+++ b/src/lib/exchange_api_refresh_common.c
@@ -174,7 +174,7 @@ TALER_EXCHANGE_get_melt_data_ (
struct TALER_PlanchetDetail pd;
struct TALER_CoinPubHashP c_hash;
struct TALER_AgeCommitmentHash ach;
- struct TALER_AgeCommitmentHash *pach = NULL;
+ struct TALER_AgeCommitmentHash *pah = NULL;
TALER_transfer_secret_to_planchet_secret (&trans_sec,
j,
@@ -202,7 +202,7 @@ TALER_EXCHANGE_get_melt_data_ (
TALER_age_commitment_hash (
&fcd->age_commitment_proofs[i]->commitment,
&ach);
- pach = &ach;
+ pah = &ach;
}
if (TALER_DENOMINATION_CS == alg_values[j].cipher)
@@ -213,7 +213,7 @@ TALER_EXCHANGE_get_melt_data_ (
&alg_values[j],
bks,
coin_priv,
- pach,
+ pah,
&c_hash,
&pd))
{
diff --git a/src/lib/exchange_api_refreshes_reveal.c b/src/lib/exchange_api_refreshes_reveal.c
index 3360accd9..220682992 100644
--- a/src/lib/exchange_api_refreshes_reveal.c
+++ b/src/lib/exchange_api_refreshes_reveal.c
@@ -139,7 +139,7 @@ refresh_reveal_ok (struct TALER_EXCHANGE_RefreshesRevealHandle *rrh,
};
struct TALER_FreshCoin coin;
union TALER_DenominationBlindingKeyP bks;
- const struct TALER_AgeCommitmentHash *pach = NULL;
+ const struct TALER_AgeCommitmentHash *pah = NULL;
rci->ps = fcd->ps[rrh->noreveal_index];
rci->bks = fcd->bks[rrh->noreveal_index];
@@ -157,7 +157,7 @@ refresh_reveal_ok (struct TALER_EXCHANGE_RefreshesRevealHandle *rrh,
TALER_age_commitment_hash (&rci->age_commitment_proof->commitment,
&rci->h_age_commitment);
- pach = &rci->h_age_commitment;
+ pah = &rci->h_age_commitment;
}
if (GNUNET_OK !=
@@ -181,7 +181,7 @@ refresh_reveal_ok (struct TALER_EXCHANGE_RefreshesRevealHandle *rrh,
&coin_pub.eddsa_pub);
TALER_coin_pub_hash (
&coin_pub,
- pach,
+ pah,
&coin_hash);
if (GNUNET_OK !=
TALER_planchet_to_coin (
@@ -189,7 +189,7 @@ refresh_reveal_ok (struct TALER_EXCHANGE_RefreshesRevealHandle *rrh,
&blind_sig,
&bks,
&rci->coin_priv,
- pach,
+ pah,
&coin_hash,
&rrh->alg_values[i],
&coin))