aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-10-10 14:23:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-10-10 14:23:34 +0000
commit1ce7b48057cb3aa71e71d841ed584d3414a86ae6 (patch)
treed67bcd7ae70e19a8f5b984a5017d10a502ce3409
parentcbcdd337aaae878dc47df10f9c21f77cbebadc77 (diff)
mark the handle as no longer having a broken pipe when a transfer has failed
-rw-r--r--lib/multi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/multi.c b/lib/multi.c
index b92c050de..e901bddfd 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -1247,6 +1247,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
* then we go to completed and consider this transfer aborted.
*/
easy->easy_handle->state.is_in_pipeline = FALSE;
+ easy->easy_handle->state.pipe_broke = FALSE;
+
if(easy->easy_conn) {
/* if this has a connection, unsubscribe from the pipelines */
easy->easy_conn->writechannel_inuse = FALSE;