diff options
Diffstat (limited to 'src/mint-lib')
-rw-r--r-- | src/mint-lib/mint_api_admin.c | 3 | ||||
-rw-r--r-- | src/mint-lib/mint_api_deposit.c | 1 | ||||
-rw-r--r-- | src/mint-lib/mint_api_json.c | 2 | ||||
-rw-r--r-- | src/mint-lib/mint_api_json.h | 4 | ||||
-rw-r--r-- | src/mint-lib/mint_api_withdraw.c | 3 |
5 files changed, 9 insertions, 4 deletions
diff --git a/src/mint-lib/mint_api_admin.c b/src/mint-lib/mint_api_admin.c index c35a9c5f..0169f8e7 100644 --- a/src/mint-lib/mint_api_admin.c +++ b/src/mint-lib/mint_api_admin.c @@ -105,6 +105,7 @@ struct TALER_MINT_AdminAddIncomingHandle * HTTP /admin/add/incoming request. * * @param cls the `struct TALER_MINT_AdminAddIncomingHandle` + * @param eh the curl request handle */ static void handle_admin_add_incoming_finished (void *cls, @@ -319,7 +320,7 @@ TALER_MINT_admin_add_incoming (struct TALER_MINT_Handle *mint, * Cancel an add incoming. This function cannot be used on a request * handle if a response is already served for it. * - * @param sign the admin add incoming request handle + * @param aai the admin add incoming request handle */ void TALER_MINT_admin_add_incoming_cancel (struct TALER_MINT_AdminAddIncomingHandle *aai) diff --git a/src/mint-lib/mint_api_deposit.c b/src/mint-lib/mint_api_deposit.c index ad828ea3..671e2a9d 100644 --- a/src/mint-lib/mint_api_deposit.c +++ b/src/mint-lib/mint_api_deposit.c @@ -306,6 +306,7 @@ verify_deposit_signature_forbidden (const struct TALER_MINT_DepositHandle *dh, * HTTP /deposit request. * * @param cls the `struct TALER_MINT_DepositHandle` + * @param eh the curl request handle */ static void handle_deposit_finished (void *cls, diff --git a/src/mint-lib/mint_api_json.c b/src/mint-lib/mint_api_json.c index a28293cf..25876e07 100644 --- a/src/mint-lib/mint_api_json.c +++ b/src/mint-lib/mint_api_json.c @@ -400,7 +400,7 @@ MAJ_spec_absolute_time (const char *name, * Specification for parsing an amount value. * * @param name name of the JSON field - * @param at where to store the absolute time found under @a name + * @param amount where to store the amount found under @a name */ struct MAJ_Specification MAJ_spec_amount (const char *name, diff --git a/src/mint-lib/mint_api_json.h b/src/mint-lib/mint_api_json.h index 69019251..46ccef3a 100644 --- a/src/mint-lib/mint_api_json.h +++ b/src/mint-lib/mint_api_json.h @@ -228,7 +228,7 @@ MAJ_parse_free (struct MAJ_Specification *spec); * Base32hex encoding). * * @param name name of the JSON field - * @param obj_ptr pointer where to write the data (a `void **`) + * @param obj pointer where to write the data (a `void **`) * @param size where to store the number of bytes allocated for @a obj (of type `size_t *` */ #define MAJ_spec_varsize(name,obj,size) { .cmd = MAJ_CMD_BINARY_VARIABLE, .field = name, .details.variable_data.dest_p = obj, .details.variable_data.dest_size_p = size } @@ -260,7 +260,7 @@ MAJ_spec_absolute_time (const char *name, * Specification for parsing an amount value. * * @param name name of the JSON field - * @param at where to store the absolute time found under @a name + * @param amount where to store the amount under @a name */ struct MAJ_Specification MAJ_spec_amount (const char *name, diff --git a/src/mint-lib/mint_api_withdraw.c b/src/mint-lib/mint_api_withdraw.c index 491f4d76..91734611 100644 --- a/src/mint-lib/mint_api_withdraw.c +++ b/src/mint-lib/mint_api_withdraw.c @@ -287,6 +287,7 @@ parse_reserve_history (json_t *history, * HTTP /withdraw/status request. * * @param cls the `struct TALER_MINT_WithdrawStatusHandle` + * @param eh curl handle of the request that finished */ static void handle_withdraw_status_finished (void *cls, @@ -788,6 +789,7 @@ withdraw_sign_payment_required (struct TALER_MINT_WithdrawSignHandle *wsh, * HTTP /withdraw/sign request. * * @param cls the `struct TALER_MINT_WithdrawSignHandle` + * @param eh curl handle of the request that finished */ static void handle_withdraw_sign_finished (void *cls, @@ -937,6 +939,7 @@ withdraw_sign_download_cb (char *bufptr, * * @param mint the mint handle; the mint must be ready to operate * @param pk kind of coin to create + * @param reserve_priv private key of the reserve to withdraw from * @param coin_priv where to store the coin's private key, * caller must have committed this value to disk before the call (with @a pk) * @param blinding_key where to store the coin's blinding key |