Commit c40b4f6c authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

don't add 2 to the post size, that was a previous mistake because there

was an extra CRLF added to the post data
parent d3b96dd3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -831,7 +831,7 @@ CURLcode Curl_http(struct connectdata *conn)
      data->set.in = (FILE *)&http->form;

      add_bufferf(req_buffer,
                  "Content-Length: %d\r\n", http->postsize-2);
                  "Content-Length: %d\r\n", http->postsize);

      if(!checkheaders(data, "Expect:")) {
        /* if not disabled explicitly we add a Expect: 100-continue