diff options
author | Christian Blättler <blatc2@bfh.ch> | 2024-05-06 21:09:57 +0200 |
---|---|---|
committer | Christian Blättler <blatc2@bfh.ch> | 2024-05-06 21:09:57 +0200 |
commit | 77dec74367f3c9b201972197135ec338d32713d1 (patch) | |
tree | c8a60c7cd8e96f9ae16c3007073bf4a88d7a619f /src/util | |
parent | 079268ebddc6a5b0662d4481306d219e5e590dc7 (diff) |
fix typo
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/tokens.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/tokens.c b/src/util/tokens.c index 481eb6d20..5d99c5dfe 100644 --- a/src/util/tokens.c +++ b/src/util/tokens.c @@ -148,7 +148,7 @@ TALER_token_use_blinding_secret_create ( const struct TALER_TokenUseMerchantValues * -TALER_token_bling_input_rsa_singleton () +TALER_token_blind_input_rsa_singleton () { static struct GNUNET_CRYPTO_BlindingInputValues bi = { .cipher = GNUNET_CRYPTO_BSA_RSA @@ -164,7 +164,7 @@ void TALER_token_blind_input_copy (struct TALER_TokenUseMerchantValues *bi_dst, const struct TALER_TokenUseMerchantValues *bi_src) { - if (bi_src == TALER_token_bling_input_rsa_singleton ()) + if (bi_src == TALER_token_blind_input_rsa_singleton ()) { *bi_dst = *bi_src; return; |