1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-13 13:05:03 -05:00

transfer.c: fix parentheses/braces placement for vi/emacs delimiter matching

This commit is contained in:
Yang Tse 2011-09-02 17:41:39 +02:00
parent 6b59bc1805
commit 749dbfbc87

View File

@ -169,11 +169,12 @@ CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp)
const char *endofline_native; const char *endofline_native;
const char *endofline_network; const char *endofline_network;
int hexlen; int hexlen;
if(
#ifdef CURL_DO_LINEEND_CONV #ifdef CURL_DO_LINEEND_CONV
if((data->set.crlf) || (data->set.prefer_ascii)) { (data->set.prefer_ascii) ||
#else #endif
if(data->set.crlf) { (data->set.crlf)) {
#endif /* CURL_DO_LINEEND_CONV */
/* \n will become \r\n later on */ /* \n will become \r\n later on */
endofline_native = "\n"; endofline_native = "\n";
endofline_network = "\x0a"; endofline_network = "\x0a";
@ -505,7 +506,6 @@ static CURLcode readwrite_data(struct SessionHandle *data,
is non-headers. */ is non-headers. */
if(k->str && !k->header && (nread > 0 || is_empty_data)) { if(k->str && !k->header && (nread > 0 || is_empty_data)) {
#ifndef CURL_DISABLE_HTTP #ifndef CURL_DISABLE_HTTP
if(0 == k->bodywrites && !is_empty_data) { if(0 == k->bodywrites && !is_empty_data) {
/* These checks are only made the first time we are about to /* These checks are only made the first time we are about to
@ -553,9 +553,10 @@ static CURLcode readwrite_data(struct SessionHandle *data,
} }
} /* we have a time condition */ } /* we have a time condition */
} /* this is HTTP */ } /* this is HTTP or RTSP */
} /* this is the first time we write a body part */ } /* this is the first time we write a body part */
#endif /* CURL_DISABLE_HTTP */ #endif /* CURL_DISABLE_HTTP */
k->bodywrites++; k->bodywrites++;
/* pass data to the debug function before it gets "dechunked" */ /* pass data to the debug function before it gets "dechunked" */
@ -875,13 +876,12 @@ static CURLcode readwrite_upload(struct SessionHandle *data,
#endif /* CURL_DISABLE_SMTP */ #endif /* CURL_DISABLE_SMTP */
/* convert LF to CRLF if so asked */ /* convert LF to CRLF if so asked */
if((!sending_http_headers) && if((!sending_http_headers) && (
#ifdef CURL_DO_LINEEND_CONV #ifdef CURL_DO_LINEEND_CONV
/* always convert if we're FTPing in ASCII mode */ /* always convert if we're FTPing in ASCII mode */
((data->set.crlf) || (data->set.prefer_ascii))) { (data->set.prefer_ascii) ||
#else
(data->set.crlf)) {
#endif #endif
(data->set.crlf))) {
if(data->state.scratch == NULL) if(data->state.scratch == NULL)
data->state.scratch = malloc(2*BUFSIZE); data->state.scratch = malloc(2*BUFSIZE);
if(data->state.scratch == NULL) { if(data->state.scratch == NULL) {