This commit is contained in:
Christian Grothoff 2020-01-16 21:26:53 +01:00
parent 3d9ad86dfb
commit dd6bad739a
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 5 additions and 5 deletions

View File

@ -217,7 +217,7 @@ TALER_BANK_admin_add_incoming (struct GNUNET_CURL_Context *ctx,
const struct
TALER_ReservePublicKeyP *reserve_pub,
const struct TALER_Amount *amount,
const char *credit_account,
const char *debit_account,
TALER_BANK_AdminAddIncomingResultCallback res_cb,
void *res_cb_cls);

View File

@ -149,7 +149,7 @@ TALER_project_data_default (void);
* URL-encode a string according to rfc3986.
*
* @param s string to encode
* @returns the urlencoded string, the caller must free it with GNUNET_free
* @returns the urlencoded string, the caller must free it with GNUNET_free()
*/
char *
TALER_urlencode (const char *s);
@ -160,9 +160,9 @@ TALER_urlencode (const char *s);
* directly or via proxy).
*
* @param connection MHD connection
* @returns GNUNET_YES if the MHD connection is using https,
* GNUNET_NO if the MHD connection is using http,
* GNUNET_SYSERR if the connection type couldn't be determined
* @returns #GNUNET_YES if the MHD connection is using https,
* #GNUNET_NO if the MHD connection is using http,
* #GNUNET_SYSERR if the connection type couldn't be determined
*/
int
TALER_mhd_is_https (struct MHD_Connection *connection);