diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-24 23:25:26 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-24 23:25:26 +0200 |
commit | 3da15349a7d24155497fa104e7881ce9ca9e1d94 (patch) | |
tree | c8e67ef4133146edb0bd47dc82c2933d9ad8eec8 /src/include | |
parent | e2c67f76b01c0c5aa21727feb88946c2c9f3a877 (diff) |
fix badly named structure, it is a pointer, not packed
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_crypto_lib.h | 4 | ||||
-rw-r--r-- | src/include/taler_json_lib.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index ac95e4756..ac5d21aeb 100644 --- a/src/include/taler_crypto_lib.h +++ b/src/include/taler_crypto_lib.h @@ -2465,7 +2465,7 @@ struct TALER_TokenUseMerchantValues /** * The blinded token use public key of a token. Ready to be signed by the merchant. */ -struct TALER_TokenEnvelopeP +struct TALER_TokenEnvelope { /** * Blinded public key of the token. @@ -2566,7 +2566,7 @@ TALER_token_blind_input_copy (struct TALER_TokenUseMerchantValues *bi_dst, */ enum GNUNET_GenericReturnValue TALER_token_issue_sign (const struct TALER_TokenIssuePrivateKeyP *issue_priv, - const struct TALER_TokenEnvelopeP *envelope, + const struct TALER_TokenEnvelope *envelope, struct TALER_TokenIssueBlindSignatureP *issue_sig); diff --git a/src/include/taler_json_lib.h b/src/include/taler_json_lib.h index dd47feb12..806b39dc1 100644 --- a/src/include/taler_json_lib.h +++ b/src/include/taler_json_lib.h @@ -151,7 +151,7 @@ TALER_JSON_pack_token_issue_sig ( struct GNUNET_JSON_PackSpec TALER_JSON_pack_token_envelope ( const char *name, - const struct TALER_TokenEnvelopeP *envelope); + const struct TALER_TokenEnvelope *envelope); /** @@ -635,7 +635,7 @@ TALER_JSON_spec_blinded_token_issue_sig ( struct GNUNET_JSON_Specification TALER_JSON_spec_token_envelope ( const char *field, - struct TALER_TokenEnvelopeP *env); + struct TALER_TokenEnvelope *env); /** |