aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-28 17:07:22 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-28 17:07:22 +0000
commit958987c214cacdfaad6fa960b39e0c917f43af2d (patch)
treec56329e40b0b015ab7d081dfdd8868a75643f456 /lib/http.c
parented75842df07357acde35c6edef39aa6e31d752a2 (diff)
Chunked-transfers should have an additional CRLF after the final 0 CRLF
sequence.
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http.c b/lib/http.c
index 0dcaf7866..c3862cded 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -1614,8 +1614,8 @@ CURLcode Curl_http(struct connectdata *conn)
/* Append the POST data chunky-style */
add_bufferf(req_buffer, "%x\r\n", postsize);
add_buffer(req_buffer, data->set.postfields, postsize);
- add_buffer(req_buffer, "\r\n0\r\n", 5); /* end of a chunked
- transfer stream */
+ add_buffer(req_buffer, "\r\n0\r\n\r\n", 7); /* end of a chunked
+ transfer stream */
}
}
else {