On Thu, Aug 10, 2017 at 02:36:41PM +0200, Mischa POSLAWSKY wrote:
Jeff King wrote:
quoted
-#if LIBCURL_VERSION_NUM >= 0x071301
curl_easy_setopt(result, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
-#elif LIBCURL_VERSION_NUM >= 0x071101
curl_easy_setopt(result, CURLOPT_POST301, 1);
-#endif
This seems to be an unintended behavioural change: the second condition
wouldn't have applied previously and overrides the first option
(equivalent to CURLOPT_POSTREDIR = CURL_REDIR_POST_301).
Thanks, you're right. I'll fix it in my re-roll.
-Peff