fix TXL_curl_easy_get signatures

This commit is contained in:
Christian Grothoff 2018-11-11 15:49:53 +01:00
parent debe0d05ad
commit 6f0b652da6
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
5 changed files with 10 additions and 10 deletions

View File

@ -30,7 +30,7 @@
* @param url URL to query * @param url URL to query
*/ */
CURL * CURL *
TEL_curl_easy_get (char *url) TAL_curl_easy_get (const char *url)
{ {
CURL *eh; CURL *eh;

View File

@ -36,6 +36,6 @@
* @param url URL to query * @param url URL to query
*/ */
CURL * CURL *
TAL_curl_easy_get (char *url); TAL_curl_easy_get (const char *url);
#endif /* _TALER_CURL_DEFAULTS_H */ #endif /* _TALER_CURL_DEFAULTS_H */

View File

@ -166,7 +166,7 @@ main (int argc,
= TALER_TESTING_prepare_fakebank (CONFIG_FILE, = TALER_TESTING_prepare_fakebank (CONFIG_FILE,
"account-2"))) "account-2")))
return 77; return 77;
TALER_TESTING_AUDITOR_cleanup_files (CONFIG_FILE); TALER_TESTING_cleanup_files (CONFIG_FILE);
/* @helpers. Run keyup, create tables, ... Note: it /* @helpers. Run keyup, create tables, ... Note: it
* fetches the port number from config in order to see * fetches the port number from config in order to see
* if it's available. */ * if it's available. */
@ -185,7 +185,7 @@ main (int argc,
* start/stop the exchange. It calls TALER_TESTING_setup * start/stop the exchange. It calls TALER_TESTING_setup
* which creates the 'is' object. * which creates the 'is' object.
*/ */
TALER_TESTING_AUDITOR_setup_with_auditor (&run, TALER_TESTING_setup_with_auditor_and_exchange (&run,
NULL, NULL,
CONFIG_FILE)) CONFIG_FILE))
return 1; return 1;

View File

@ -30,7 +30,7 @@
* @param url URL to query * @param url URL to query
*/ */
CURL * CURL *
TEL_curl_easy_get (char *url) TEL_curl_easy_get (const char *url)
{ {
CURL *eh; CURL *eh;

View File

@ -36,6 +36,6 @@
* @param url URL to query * @param url URL to query
*/ */
CURL * CURL *
TEL_curl_easy_get (char *url); TEL_curl_easy_get (const char *url);
#endif /* _TALER_CURL_DEFAULTS_H */ #endif /* _TALER_CURL_DEFAULTS_H */