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
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;
}