doxygen fixes

This commit is contained in:
Christian Grothoff 2015-10-05 10:39:17 +02:00
parent 3b3af8a077
commit dfb767a095
2 changed files with 18 additions and 16 deletions

View File

@ -595,24 +595,24 @@ TALER_MINT_wire (struct TALER_MINT_Handle *mint,
* Cancel a wire information request. This function cannot be used
* on a request handle if a response is already served for it.
*
* @param wire the wire information request handle
* @param wh the wire information request handle
*/
void
TALER_MINT_wire_cancel (struct TALER_MINT_WireHandle *wire)
TALER_MINT_wire_cancel (struct TALER_MINT_WireHandle *wh)
{
if (NULL != wire->job)
if (NULL != wh->job)
{
MAC_job_cancel (wire->job);
wire->job = NULL;
MAC_job_cancel (wh->job);
wh->job = NULL;
}
if (NULL != wire->methods)
if (NULL != wh->methods)
{
json_decref (wire->methods);
wire->methods = NULL;
json_decref (wh->methods);
wh->methods = NULL;
}
GNUNET_free_non_null (wire->db.buf);
GNUNET_free (wire->url);
GNUNET_free (wire);
GNUNET_free_non_null (wh->db.buf);
GNUNET_free (wh->url);
GNUNET_free (wh);
}

View File

@ -302,6 +302,7 @@ TMH_DB_execute_reserve_status (struct MHD_Connection *connection,
*
* @param connection request we are handling
* @param session database session we are using
* @param key_state key state to lookup denomination pubs
* @param reserve reserve to withdraw from
* @param denomination_pub public key of the denomination requested
* @param dki denomination to withdraw
@ -1142,11 +1143,12 @@ refresh_mint_coin (struct MHD_Connection *connection,
* @param session database session
* @param session_hash hash identifying the refresh session
* @param refresh_session information about the refresh operation we are doing
* @param melts array of "num_oldcoins" with information about melted coins
* @param denom_pubs array of "num_newcoins" denomination keys for the new coins
* @param ev_sigs[out] where to store generated signatures for the new coins,
* @param[out] ev_sigs where to store generated signatures for the new coins,
* array of length "num_newcoins", memory released by the
* caller
* @param commit_coins[out] array of length "num_newcoins" to be used for
* @param[out] commit_coins array of length "num_newcoins" to be used for
* information about the new coins from the commitment.
* @return MHD result code
*/
@ -1154,9 +1156,9 @@ static int
execute_refresh_reveal_transaction (struct MHD_Connection *connection,
struct TALER_MINTDB_Session *session,
const struct GNUNET_HashCode *session_hash,
struct TALER_MINTDB_RefreshSession *refresh_session,
struct TALER_MINTDB_RefreshMelt *melts,
struct TALER_DenominationPublicKey *denom_pubs,
const struct TALER_MINTDB_RefreshSession *refresh_session,
const struct TALER_MINTDB_RefreshMelt *melts,
const struct TALER_DenominationPublicKey *denom_pubs,
struct TALER_DenominationSignature *ev_sigs,
struct TALER_MINTDB_RefreshCommitCoin *commit_coins)
{