From 3aa3d7e6293ae18ed2dd25cbfeddaecfbe6e6c78 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 11 May 2009 07:53:38 +0000 Subject: Internal cleanup: KEEP_WRITE and KEEP_READ are now called KEEP_SEND and KEEP_RECV to better match the general terminology: receive and send is what we do from the (remote) servers. We read and write from and to the local fs. --- lib/multi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/multi.c') diff --git a/lib/multi.c b/lib/multi.c index c5712f619..75dd0277d 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -1299,13 +1299,13 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi, k = &easy->easy_handle->req; - if(!(k->keepon & KEEP_READ)) { - /* We're done reading */ + if(!(k->keepon & KEEP_RECV)) { + /* We're done receiving */ easy->easy_conn->readchannel_inuse = FALSE; } - if(!(k->keepon & KEEP_WRITE)) { - /* We're done writing */ + if(!(k->keepon & KEEP_SEND)) { + /* We're done sending */ easy->easy_conn->writechannel_inuse = FALSE; } -- cgit v1.2.3