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:
Daniel Stenberg 2007-12-08 22:50:55 +00:00
parent f8172f85b1
commit 662bee7193
11 changed files with 185 additions and 185 deletions

View file

@ -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;