]> granicus.if.org Git - curl/commitdiff
Compiler warning fix
authorYang Tse <yangsita@gmail.com>
Sun, 15 Oct 2006 23:13:12 +0000 (23:13 +0000)
committerYang Tse <yangsita@gmail.com>
Sun, 15 Oct 2006 23:13:12 +0000 (23:13 +0000)
lib/http.c

index 12c7741643e76e8734ae1b264307f5f88c888ed0..3ca6cc5433e928adb5843d235bcdb96ed474d6ca 100644 (file)
@@ -850,7 +850,7 @@ CURLcode add_buffer_send(send_buffer *in,
                          struct connectdata *conn,
                          long *bytes_written, /* add the number of sent
                                                  bytes to this counter */
-                         int included_body_bytes, /* how much of the buffer
+                         long included_body_bytes, /* how much of the buffer
                                         contains body data (for log tracing) */
                          int socketindex)
 
@@ -1603,7 +1603,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done)
   char *request;
   Curl_HttpReq httpreq = data->set.httpreq;
   char *addcookies = NULL;
-  int included_body = 0;
+  long included_body = 0;
 
   /* Always consider the DO phase done after this function call, even if there
      may be parts of the request that is not yet sent, since we can deal with