diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-09-07 10:28:57 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-07 13:43:26 +0200 |
commit | 17ca0ccff4aeacc63bf7fa90314ea58d23464617 (patch) | |
tree | abcf11fd55789ba4fe8b720b362a231d2b4be437 /include/curl/easy.h | |
parent | 7b655fcbadffc3a0297466f1527e05d4a8efe6b2 (diff) | |
download | curl-17ca0ccff4aeacc63bf7fa90314ea58d23464617.tar.gz |
curl_easy_upkeep: removed 'conn' from the name
... including the associated option.
Fixes #2951
Closes #2952
Diffstat (limited to 'include/curl/easy.h')
-rw-r--r-- | include/curl/easy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/easy.h b/include/curl/easy.h index 4328e9fdd..f42a8a969 100644 --- a/include/curl/easy.h +++ b/include/curl/easy.h @@ -97,13 +97,13 @@ CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer, /* - * NAME curl_easy_conn_upkeep() + * NAME curl_easy_upkeep() * * DESCRIPTION * * Performs connection upkeep for the given session handle. */ -CURL_EXTERN CURLcode curl_easy_conn_upkeep(CURL *curl); +CURL_EXTERN CURLcode curl_easy_upkeep(CURL *curl); #ifdef __cplusplus } |