aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-29 07:23:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-29 07:23:11 +0000
commit4cc76d157673c46434a5d3f59b2e61b85ca9e756 (patch)
tree0da8ad24c27f63c17146c28af74aa6f0e6ff2595
parent6dc5c6ffc79edc649c332b8b794187ee2d9355a8 (diff)
upload sets HTTP request to PUT for "HTTP upload"
-rw-r--r--lib/url.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/url.c b/lib/url.c
index 58965123a..e37f24163 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -339,6 +339,9 @@ CURLcode curl_setopt(CURL *curl, CURLoption option, ...)
break;
case CURLOPT_UPLOAD:
data->bits.upload = va_arg(param, long)?TRUE:FALSE;
+ if(data->bits.upload)
+ /* If this is HTTP, PUT is what's needed to "upload" */
+ data->httpreq = HTTPREQ_PUT;
break;
case CURLOPT_POST:
data->bits.http_post = va_arg(param, long)?TRUE:FALSE;