diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-13 17:03:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-13 17:03:17 +0000 |
commit | 24cfa7f1bb147f706680f7eddca9805a3b1de015 (patch) | |
tree | ca4dcaadb48f09b0997d97037f40bb4ca5166bea /lib | |
parent | 94a1d09ac7500afdd6f3cef3fbfefa16072f2704 (diff) |
the postsize is an off_t so use the proper printf format to output the
content-length when doing multipart posts
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 19473d3f1..3aa5af34a 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1487,7 +1487,7 @@ CURLcode Curl_http(struct connectdata *conn) if(!conn->bits.upload_chunky) /* only add Content-Length if not uploading chunked */ add_bufferf(req_buffer, - "Content-Length: %d\r\n", http->postsize); + "Content-Length: %" FORMAT_OFF_T "\r\n", http->postsize); if(!checkheaders(data, "Expect:")) { /* if not disabled explicitly we add a Expect: 100-continue |