aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-28 19:31:26 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-28 19:31:26 +0000
commitc341b11aafedb8beb209342dbfb12f9d70f742b4 (patch)
tree12d610d04842411fded6f2337dfa760e40b770fe /lib/url.c
parent6212e6990aead04919bb69eef3a724ff5df81fde (diff)
Steve Marx helped us realize that we shouldn't treat customrequest as a
request of its own, it just changes the keyword of a request.
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/url.c b/lib/url.c
index 63d9ae56a..52b70f638 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -559,8 +559,11 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
* Set a custom string to use as request
*/
data->set.customrequest = va_arg(param, char *);
- if(data->set.customrequest)
- data->set.httpreq = HTTPREQ_CUSTOM;
+
+ /* we don't set
+ 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;
case CURLOPT_HTTPPOST:
/*