aboutsummaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-09-07 10:28:57 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-09-07 13:43:26 +0200
commit17ca0ccff4aeacc63bf7fa90314ea58d23464617 (patch)
treeabcf11fd55789ba4fe8b720b362a231d2b4be437 /lib/easy.c
parent7b655fcbadffc3a0297466f1527e05d4a8efe6b2 (diff)
curl_easy_upkeep: removed 'conn' from the name
... including the associated option. Fixes #2951 Closes #2952
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 83433f1f5..88fc4f460 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -1201,7 +1201,7 @@ CURLcode curl_easy_send(struct Curl_easy *data, const void *buffer,
/*
* Performs connection upkeep for the given session handle.
*/
-CURLcode curl_easy_conn_upkeep(struct Curl_easy *data)
+CURLcode curl_easy_upkeep(struct Curl_easy *data)
{
/* Verify that we got an easy handle we can work with. */
if(!GOOD_EASY_HANDLE(data))
@@ -1209,7 +1209,7 @@ CURLcode curl_easy_conn_upkeep(struct Curl_easy *data)
if(data->multi_easy) {
/* Use the common function to keep connections alive. */
- return Curl_conn_upkeep(&data->multi_easy->conn_cache, data);
+ return Curl_upkeep(&data->multi_easy->conn_cache, data);
}
else {
/* No connections, so just return success */