diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-04-20 07:49:56 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-04-20 07:49:56 +0200 |
commit | 487237381dc81c16878b2e3faaac37777b6dd7bf (patch) | |
tree | 542b1b8ed111ebba37c50febd07f24c2afbdeeb0 /src/exchange-lib/exchange_api_handle.c | |
parent | b0811dd868f24010329cf294a0fd2d28a0cfeae6 (diff) |
fix misc doxygen issues
Diffstat (limited to 'src/exchange-lib/exchange_api_handle.c')
-rw-r--r-- | src/exchange-lib/exchange_api_handle.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchange-lib/exchange_api_handle.c b/src/exchange-lib/exchange_api_handle.c index 6b0e785f8..00d680132 100644 --- a/src/exchange-lib/exchange_api_handle.c +++ b/src/exchange-lib/exchange_api_handle.c @@ -784,15 +784,15 @@ MAH_handle_is_ready (struct TALER_EXCHANGE_Handle *h) /** * Obtain the URL to use for an API request. * - * @param base_url base URL of the exchange (i.e. "http://exchange/") + * @param h handle for the exchange * @param path Taler API path (i.e. "/reserve/withdraw") * @return the full URI to use with cURL */ char * -MAH_path_to_url (struct TALER_EXCHANGE_Handle *exchange, +MAH_path_to_url (struct TALER_EXCHANGE_Handle *h, const char *path) { - return MAH_path_to_url2 (exchange->url, + return MAH_path_to_url2 (h->url, path); } |