Skip to content
Snippets Groups Projects
Commit 15379f06 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Curl_pgrsStartNow: clear all bits except HIDE

Bug: http://curl.haxx.se/bug/view.cgi?id=3385258
Reported by: Ben Winslow
parent f2a63736
No related branches found
No related tags found
No related merge requests found
......@@ -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 = 0;
data->progress.flags &= ~PGRS_HIDE; /* clear all bits except HIDE */
}
void Curl_pgrsSetDownloadCounter(struct SessionHandle *data, curl_off_t size)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment