mirror of
https://github.com/curl/curl.git
synced 2026-08-24 22:43:38 +03:00
All static functions that were previously name Curl_* something no longer
use that prefix as we use that prefix only for library-wide internal global symbols.
This commit is contained in:
parent
f8172f85b1
commit
662bee7193
11 changed files with 185 additions and 185 deletions
|
|
@ -2219,8 +2219,8 @@ CURLcode Curl_follow(struct SessionHandle *data,
|
|||
}
|
||||
|
||||
static CURLcode
|
||||
Curl_connect_host(struct SessionHandle *data,
|
||||
struct connectdata **conn)
|
||||
connect_host(struct SessionHandle *data,
|
||||
struct connectdata **conn)
|
||||
{
|
||||
CURLcode res = CURLE_OK;
|
||||
int urlchanged = FALSE;
|
||||
|
|
@ -2327,7 +2327,7 @@ CURLcode Curl_perform(struct SessionHandle *data)
|
|||
*/
|
||||
|
||||
do {
|
||||
res = Curl_connect_host(data, &conn); /* primary connection */
|
||||
res = connect_host(data, &conn); /* primary connection */
|
||||
|
||||
if(res == CURLE_OK) {
|
||||
bool do_done;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue