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,10 +30,10 @@
* @param url URL to query
*/
CURL *
TEL_curl_easy_get (char *url)
TAL_curl_easy_get (const char *url)
{
CURL *eh;
eh = curl_easy_init ();
GNUNET_assert (CURLE_OK ==

View File

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

View File

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

View File

@ -30,10 +30,10 @@
* @param url URL to query
*/
CURL *
TEL_curl_easy_get (char *url)
TEL_curl_easy_get (const char *url)
{
CURL *eh;
eh = curl_easy_init ();
GNUNET_assert (CURLE_OK ==

View File

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