aboutsummaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 9fa55f3c4..e85bee58c 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -766,17 +766,17 @@ CURLcode curl_easy_pause(CURL *curl, int action)
CURLcode result = CURLE_OK;
/* first switch off both pause bits */
- int newstate = k->keepon &~ (KEEP_READ_PAUSE| KEEP_WRITE_PAUSE);
+ int newstate = k->keepon &~ (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE);
/* set the new desired pause bits */
- newstate |= ((action & CURLPAUSE_RECV)?KEEP_READ_PAUSE:0) |
- ((action & CURLPAUSE_SEND)?KEEP_WRITE_PAUSE:0);
+ newstate |= ((action & CURLPAUSE_RECV)?KEEP_RECV_PAUSE:0) |
+ ((action & CURLPAUSE_SEND)?KEEP_SEND_PAUSE:0);
/* put it back in the keepon */
k->keepon = newstate;
- if(!(newstate & KEEP_READ_PAUSE) && data->state.tempwrite) {
- /* we have a buffer for writing that we now seem to be able to deliver since
+ if(!(newstate & KEEP_RECV_PAUSE) && data->state.tempwrite) {
+ /* we have a buffer for sending that we now seem to be able to deliver since
the receive pausing is lifted! */
/* get the pointer, type and length in local copies since the function may