mirror of
https://github.com/curl/curl.git
synced 2026-08-26 11:43:32 +03:00
tests: rename CURLMcode variables to mresult
This commit is contained in:
parent
0a26e3a660
commit
56f600ec23
255 changed files with 1771 additions and 1772 deletions
|
|
@ -54,7 +54,7 @@ static int debugf_cb(CURL *handle, curl_infotype type, char *buf, size_t size,
|
|||
|
||||
static CURLcode t1652_setup(struct Curl_easy **easy)
|
||||
{
|
||||
CURLcode res = CURLE_OK;
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
global_init(CURL_GLOBAL_ALL);
|
||||
*easy = curl_easy_init();
|
||||
|
|
@ -64,7 +64,7 @@ static CURLcode t1652_setup(struct Curl_easy **easy)
|
|||
}
|
||||
curl_easy_setopt(*easy, CURLOPT_DEBUGFUNCTION, debugf_cb);
|
||||
curl_easy_setopt(*easy, CURLOPT_VERBOSE, 1L);
|
||||
return res;
|
||||
return result;
|
||||
}
|
||||
|
||||
static void t1652_stop(struct Curl_easy *easy)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue