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

added an extra set of braces to unconfuse emacs and then I re-indented a

section of the code that was odd-looking previously
parent d4514f9c
Loading
Loading
Loading
Loading
+108 −108
Original line number Diff line number Diff line
@@ -2777,12 +2777,12 @@ CURLcode Curl_http(struct connectdata *conn, bool *done)

    if(conn->bits.authneg)
      postsize = 0;
    else
    else {
      /* figure out the size of the postfields */
      postsize = (data->set.postfieldsize != -1)?
        data->set.postfieldsize:
        (data->set.postfields? (curl_off_t)strlen(data->set.postfields):0);

    }
    if(!data->req.upload_chunky) {
      /* We only set Content-Length and allow a custom Content-Length if
         we don't upload data chunked, as RFC2616 forbids us to set both