test: fix CURLOPT_TCP_KEEPCNT typo

Follow up to b77d627d24

Closes #13931
This commit is contained in:
Andy Pan 2024-06-12 21:23:27 +08:00 committed by Daniel Stenberg
parent 7208ff6534
commit 479858e15e
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

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