From 51a757c11bce9ccf9069af606bc2d8b7df584eb3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 17 Jun 2010 15:08:55 +0200 Subject: multi: call the progress callback in all states As long as no error is reported, the progress function can get called. This may be a little TOO often so we should keep an eye on this and possibly make this conditional somehow. --- lib/multi.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/multi.c') diff --git a/lib/multi.c b/lib/multi.c index 9abf339b1..f210dcf04 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -1528,6 +1528,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi, multistate(easy, CURLM_STATE_COMPLETED); } + else + Curl_pgrsUpdate(easy->easy_conn); } } while(0); if((CURLM_STATE_COMPLETED == easy->state) && !easy->msg) { -- cgit v1.2.3