summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/taler_mint_service.h7
-rw-r--r--src/include/taler_mintdb_plugin.h4
-rw-r--r--src/mint-lib/mint_api_admin.c3
-rw-r--r--src/mint-lib/mint_api_deposit.c1
-rw-r--r--src/mint-lib/mint_api_json.c2
-rw-r--r--src/mint-lib/mint_api_json.h4
-rw-r--r--src/mint-lib/mint_api_withdraw.c3
-rw-r--r--src/mint/taler-mint-httpd_parsing.c2
-rw-r--r--src/mint/taler-mint-httpd_parsing.h2
-rw-r--r--src/mintdb/plugin_mintdb_postgres.c2
10 files changed, 18 insertions, 12 deletions
diff --git a/src/include/taler_mint_service.h b/src/include/taler_mint_service.h
index 2fa19434e..132dfa31d 100644
--- a/src/include/taler_mint_service.h
+++ b/src/include/taler_mint_service.h
@@ -532,10 +532,10 @@ TALER_MINT_withdraw_status (struct TALER_MINT_Handle *mint,
* Cancel a withdraw status request. This function cannot be used
* on a request handle if a response is already served for it.
*
- * @param status the withdraw status request handle
+ * @param wsh the withdraw status request handle
*/
void
-TALER_MINT_withdraw_status_cancel (struct TALER_MINT_WithdrawStatusHandle *status);
+TALER_MINT_withdraw_status_cancel (struct TALER_MINT_WithdrawStatusHandle *wsh);
/* ********************* /withdraw/sign *********************** */
@@ -574,6 +574,7 @@ typedef void
*
* @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
@@ -660,7 +661,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/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h
index d7f0f99cd..af5f2c196 100644
--- a/src/include/taler_mintdb_plugin.h
+++ b/src/include/taler_mintdb_plugin.h
@@ -651,12 +651,12 @@ struct TALER_MINTDB_Plugin
* Start a transaction.
*
* @param cls the @e cls of this struct with the plugin-specific state
- * @param sesssion connection to use
+ * @param session connection to use
* @return #GNUNET_OK on success
*/
int
(*start) (void *cls,
- struct TALER_MINTDB_Session *sesssion);
+ struct TALER_MINTDB_Session *session);
/**
diff --git a/src/mint-lib/mint_api_admin.c b/src/mint-lib/mint_api_admin.c
index c35a9c5f0..0169f8e7d 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 ad828ea39..671e2a9dc 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 a28293cfe..25876e07a 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 690192510..46ccef3ab 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 491f4d765..91734611c 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
diff --git a/src/mint/taler-mint-httpd_parsing.c b/src/mint/taler-mint-httpd_parsing.c
index 413d39bc6..43667caa5 100644
--- a/src/mint/taler-mint-httpd_parsing.c
+++ b/src/mint/taler-mint-httpd_parsing.c
@@ -1051,7 +1051,7 @@ TMH_PARSE_amount_json (struct MHD_Connection *connection,
* Generate line in parser specification for JSON object value.
*
* @param field name of the field
- * @param ptraddr address of pointer to JSON to initialize
+ * @param jsonp address of pointer to JSON to initialize
* @return corresponding field spec
*/
struct TMH_PARSE_FieldSpecification
diff --git a/src/mint/taler-mint-httpd_parsing.h b/src/mint/taler-mint-httpd_parsing.h
index 7dcbca68d..ea4eddb22 100644
--- a/src/mint/taler-mint-httpd_parsing.h
+++ b/src/mint/taler-mint-httpd_parsing.h
@@ -265,7 +265,7 @@ TMH_PARSE_release_data (struct TMH_PARSE_FieldSpecification *spec);
* Generate line in parser specification for JSON object value.
*
* @param field name of the field
- * @param ptraddr address of pointer to JSON to initialize
+ * @param jsonp address of pointer to JSON to initialize
* @return corresponding field spec
*/
struct TMH_PARSE_FieldSpecification
diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c
index 54bbc845e..015e8bbe7 100644
--- a/src/mintdb/plugin_mintdb_postgres.c
+++ b/src/mintdb/plugin_mintdb_postgres.c
@@ -1096,7 +1096,7 @@ postgres_insert_denomination_info (void *cls,
* Fetch information about a denomination key.
*
* @param cls the @e cls of this struct with the plugin-specific state
- * @param sesssion connection to use
+ * @param session connection to use
* @param denom_pub the public key used for signing coins of this denomination
* @param[out] issue set to issue information with value, fees and other info about the coin, can be NULL
* @return #GNUNET_OK on success; #GNUNET_NO if no record was found, #GNUNET_SYSERR on failure