aboutsummaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-08-03 00:03:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-08-03 22:51:35 +0200
commit784336deec2a674fc2ed8fe6f4af65ecf0cb8f35 (patch)
treeb92cb558649e292973c4b1d1171b4356409f1800 /lib/easy.c
parenteb41e8eebef1a308157fbbd171919dba28a1eca2 (diff)
multi: remove data->state.current_conn struct field
Not needed
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c
index e1b74b070..041a831b1 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -812,7 +812,7 @@ CURLcode curl_easy_pause(CURL *curl, int action)
do {
chunklen = (tempsize > CURL_MAX_WRITE_SIZE)?CURL_MAX_WRITE_SIZE:tempsize;
- result = Curl_client_write(data->state.current_conn,
+ result = Curl_client_write(data->easy_conn,
temptype, tempwrite, chunklen);
if(result)
/* failures abort the loop at once */