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

As Andrés García reported we need to fflush() the data->err so that the

progress meter looks better on windows (and if the data->err is redirected
from stderr it also makes a point)
parent 3a588fc9
No related branches found
No related tags found
No related merge requests found
......@@ -327,5 +327,8 @@ int Curl_pgrsUpdate(struct connectdata *conn)
max5data(data->progress.current_speed, max5[5]) /* current speed */
);
/* we flush the output stream to make it appear as soon as possible */
fflush(data->err);
return 0;
}
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