aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-02 07:25:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-02 07:25:39 +0000
commit7ab3b5b3bb4c02dc00621efe13b8d3b29b819250 (patch)
tree2e0f118ed75aed0201d4b15d8d1b948cda184430 /lib/http.c
parent00d5f886e3037434f7173f06908ade39488476b5 (diff)
use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity of
having to redef that name
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/http.c b/lib/http.c
index 26e2ec0ac..c7e54ed89 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -1272,7 +1272,7 @@ CURLcode Curl_http(struct connectdata *conn)
passed += actuallyread;
if(actuallyread != readthisamountnow) {
- failf(data, "Could only read " CURL_FORMAT_OFF_T
+ failf(data, "Could only read " FORMAT_OFF_T
" bytes from the input",
passed);
return CURLE_READ_ERROR;
@@ -1312,8 +1312,8 @@ CURLcode Curl_http(struct connectdata *conn)
curl_off_t total_expected_size=
conn->resume_from + data->set.infilesize;
conn->allocptr.rangeline =
- aprintf("Content-Range: bytes %s" CURL_FORMAT_OFF_T "/"
- CURL_FORMAT_OFF_T "\r\n",
+ aprintf("Content-Range: bytes %s" FORMAT_OFF_T "/"
+ FORMAT_OFF_T "\r\n",
conn->range, total_expected_size-1,
total_expected_size);
}
@@ -1321,7 +1321,7 @@ CURLcode Curl_http(struct connectdata *conn)
/* Range was selected and then we just pass the incoming range and
append total size */
conn->allocptr.rangeline =
- aprintf("Content-Range: bytes %s/" CURL_FORMAT_OFF_T "\r\n",
+ aprintf("Content-Range: bytes %s/" FORMAT_OFF_T "\r\n",
conn->range, data->set.infilesize);
}
}
@@ -1551,7 +1551,7 @@ CURLcode Curl_http(struct connectdata *conn)
if((data->set.infilesize>0) && !conn->bits.upload_chunky)
/* only add Content-Length if not uploading chunked */
add_bufferf(req_buffer,
- "Content-Length: " CURL_FORMAT_OFF_T "\r\n", /* size */
+ "Content-Length: " FORMAT_OFF_T "\r\n", /* size */
data->set.infilesize );
add_bufferf(req_buffer, "\r\n");