mirror of
https://github.com/curl/curl.git
synced 2026-06-21 08:55:37 +03:00
test: fix CURLOPT_TCP_KEEPCNT typo
Follow up to b77d627d24
Closes #13931
This commit is contained in:
parent
7208ff6534
commit
479858e15e
1 changed files with 1 additions and 1 deletions
|
|
@ -241,7 +241,7 @@ int main(int argc, char *argv[])
|
|||
curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L);
|
||||
curl_easy_setopt(curl, CURLOPT_TCP_KEEPIDLE, 1L);
|
||||
curl_easy_setopt(curl, CURLOPT_TCP_KEEPINTVL, 1L);
|
||||
curl_easy_setopt(curl, CURLOPT_TCP_KEEPINTVL, 1L);
|
||||
curl_easy_setopt(curl, CURLOPT_TCP_KEEPCNT, 1L);
|
||||
|
||||
/* Enable uploading. */
|
||||
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue