diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-08-10 00:07:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-08-10 00:07:06 +0200 |
commit | 5d5dd08e775732beec24a1041f8cb9b62e311188 (patch) | |
tree | 83d7fea73bf7179885c5e723187dc8b6af15fdc0 | |
parent | cfbdbf978355eab30ae24e57d4437b6536f56298 (diff) |
indent: white space fixes only
-rw-r--r-- | lib/http.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/http.c b/lib/http.c index ddec280f4..926d51f2b 100644 --- a/lib/http.c +++ b/lib/http.c @@ -2536,7 +2536,8 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) /* url */ if (paste_ftp_userpwd) result = Curl_add_bufferf(req_buffer, "ftp://%s:%s@%s", - conn->user, conn->passwd, ppath + sizeof("ftp://") - 1); + conn->user, conn->passwd, + ppath + sizeof("ftp://") - 1); else result = Curl_add_buffer(req_buffer, ppath, strlen(ppath)); if (result) @@ -2741,7 +2742,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) /* fire away the whole request to the server */ result = Curl_add_buffer_send(req_buffer, conn, - &data->info.request_size, 0, FIRSTSOCKET); + &data->info.request_size, 0, FIRSTSOCKET); if(result) failf(data, "Failed sending POST request"); else @@ -2793,7 +2794,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) /* this sends the buffer and frees all the buffer resources */ result = Curl_add_buffer_send(req_buffer, conn, - &data->info.request_size, 0, FIRSTSOCKET); + &data->info.request_size, 0, FIRSTSOCKET); if(result) failf(data, "Failed sending PUT request"); else @@ -2942,7 +2943,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) } /* issue the request */ result = Curl_add_buffer_send(req_buffer, conn, &data->info.request_size, - (size_t)included_body, FIRSTSOCKET); + (size_t)included_body, FIRSTSOCKET); if(result) failf(data, "Failed sending HTTP POST request"); @@ -2959,7 +2960,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) /* issue the request */ result = Curl_add_buffer_send(req_buffer, conn, - &data->info.request_size, 0, FIRSTSOCKET); + &data->info.request_size, 0, FIRSTSOCKET); if(result) failf(data, "Failed sending HTTP request"); |