]> granicus.if.org Git - curl/commitdiff
Curl_pgrsStartNow: clear all flags but HIDE
authorDaniel Stenberg <daniel@haxx.se>
Mon, 15 Aug 2011 20:08:58 +0000 (22:08 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 15 Aug 2011 20:13:18 +0000 (22:13 +0200)
As bug 3385258 pointed out but I missed up the fix for. This is another
take at a fix.

Bug: http://curl.haxx.se/bug/view.cgi?id=3392101
Reported by: Wu Yongzheng

lib/progress.c

index 9ad924108753d1529751144945a55fae1c7b3661..8966854faa8b658c931e0a9c3658c4e436746868 100644 (file)
@@ -201,7 +201,7 @@ void Curl_pgrsStartNow(struct SessionHandle *data)
 {
   data->progress.speeder_c = 0; /* reset the progress meter display */
   data->progress.start = Curl_tvnow();
-  data->progress.flags &= ~PGRS_HIDE; /* clear all bits except HIDE */
+  data->progress.flags &= PGRS_HIDE; /* clear all bits except HIDE */
 }
 
 void Curl_pgrsSetDownloadCounter(struct SessionHandle *data, curl_off_t size)