aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-08-03 11:52:53 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-08-03 11:52:53 +0000
commit89872447585d6d279bb9cb23fda30855932143a2 (patch)
tree58c7e11f2d9776bbfadfef421b031b8b80bb02ba /lib/transfer.c
parent9b69f6faabd5dc8a6d77fcf585ca214de7689e73 (diff)
httpreq cleanup fix
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 5bdbefd1b..91db1c59e 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -1046,10 +1046,8 @@ CURLcode Curl_perform(CURL *curl)
case 303: /* See Other */
/* Disable both types of POSTs, since doing a second POST when
* following isn't what anyone would want! */
- data->bits.http_post = FALSE;
- data->bits.http_formpost = FALSE;
- data->httpreq = HTTPREQ_GET; /* enfore GET request */
- infof(data, "Disables POST\n");
+ data->httpreq = HTTPREQ_GET; /* enforce GET request */
+ infof(data, "Disables POST, goes with GET\n");
break;
case 304: /* Not Modified */
/* 304 means we did a conditional request and it was "Not modified".