diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-10-05 10:39:17 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-10-05 10:39:17 +0200 |
commit | dfb767a0954762063fcd3ad48e788211db288222 (patch) | |
tree | 64e29894a6db46eecec69462cb8e90dace9a4d41 /src/mint-lib | |
parent | 3b3af8a077f4ea67db47a516c9bae15564896f6b (diff) |
doxygen fixes
Diffstat (limited to 'src/mint-lib')
-rw-r--r-- | src/mint-lib/mint_api_wire.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mint-lib/mint_api_wire.c b/src/mint-lib/mint_api_wire.c index 81506961b..2af9e6ed0 100644 --- a/src/mint-lib/mint_api_wire.c +++ b/src/mint-lib/mint_api_wire.c @@ -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); } |