indentation fixes only

This commit is contained in:
Daniel Stenberg
2009-08-03 11:32:55 +00:00
parent f0dbdcff9d
commit 3a9c03bef3

View File

@@ -1864,8 +1864,7 @@ static CURLMcode multi_socket(struct Curl_multi *multi,
data->set.one_easy->easy_conn->send_pipe && data->set.one_easy->easy_conn->send_pipe &&
data->set.one_easy->easy_conn->send_pipe->head) data->set.one_easy->easy_conn->send_pipe->head)
data = data->set.one_easy->easy_conn->send_pipe->head->ptr; data = data->set.one_easy->easy_conn->send_pipe->head->ptr;
else else if ((ev_bitmask & CURL_POLL_IN) &&
if ((ev_bitmask & CURL_POLL_IN) &&
data->set.one_easy->easy_conn->recv_pipe && data->set.one_easy->easy_conn->recv_pipe &&
data->set.one_easy->easy_conn->recv_pipe->head) data->set.one_easy->easy_conn->recv_pipe->head)
data = data->set.one_easy->easy_conn->recv_pipe->head->ptr; data = data->set.one_easy->easy_conn->recv_pipe->head->ptr;
@@ -2143,7 +2142,7 @@ static int checkPendPipeline(struct connectdata *conn)
Pay special attention to the new sending list "leader" as it needs to get Pay special attention to the new sending list "leader" as it needs to get
checked to update what sockets it acts on. checked to update what sockets it acts on.
*/ */
static void moveHandleFromSendToRecvPipeline(struct SessionHandle *handle, static void moveHandleFromSendToRecvPipeline(struct SessionHandle *handle,
struct connectdata *conn) struct connectdata *conn)
{ {