aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-12-08 22:50:55 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-12-08 22:50:55 +0000
commit662bee71930fc30ef3fe43077bf696def44c5c7b (patch)
treed9e735f57baf929da6506bd6f8eac926b9b0363b /lib/transfer.c
parentf8172f85b1c09554fc4134c4fc972bcfe4c7a9aa (diff)
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.
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 2f9dd95e8..0817fa024 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -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;