CURLOPT_POSTREDIR.md: drop stray dot added by mistake

This commit is contained in:
Viktor Szakats 2025-08-01 19:00:22 +02:00
parent cc42e32840
commit ed4e14ebd1
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -64,7 +64,7 @@ int main(void)
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "data=true");
/* example.com is redirected, so we tell libcurl to send POST on 301,
302 and 303 HTTP response codes. */
302 and 303 HTTP response codes */
curl_easy_setopt(curl, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
curl_easy_perform(curl);