Loading lib/url.c +5 −2 Original line number Original line Diff line number Diff line Loading @@ -559,8 +559,11 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...) * Set a custom string to use as request * Set a custom string to use as request */ */ data->set.customrequest = va_arg(param, char *); data->set.customrequest = va_arg(param, char *); if(data->set.customrequest) /* we don't set data->set.httpreq = HTTPREQ_CUSTOM; data->set.httpreq = HTTPREQ_CUSTOM; here, we continue as if we were using the already set type and this just changes the actual request keyword */ break; break; case CURLOPT_HTTPPOST: case CURLOPT_HTTPPOST: /* /* Loading Loading
lib/url.c +5 −2 Original line number Original line Diff line number Diff line Loading @@ -559,8 +559,11 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...) * Set a custom string to use as request * Set a custom string to use as request */ */ data->set.customrequest = va_arg(param, char *); data->set.customrequest = va_arg(param, char *); if(data->set.customrequest) /* we don't set data->set.httpreq = HTTPREQ_CUSTOM; data->set.httpreq = HTTPREQ_CUSTOM; here, we continue as if we were using the already set type and this just changes the actual request keyword */ break; break; case CURLOPT_HTTPPOST: case CURLOPT_HTTPPOST: /* /* Loading