From a333bddeeb6ce46f0a7d218d78fa700c881f2833 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 20 Feb 2002 13:38:34 +0000 Subject: [PATCH] =?UTF-8?q?Andr=E9s=20Garc=EDa=20solved=20bug=20report=20#?= =?UTF-8?q?515228=20by=20making=20sure=20the=20progress=20meter=20is=20upd?= =?UTF-8?q?ated=20even=20if=20everything=20is=20read=20in=20one=20single?= =?UTF-8?q?=20pass,=20as=20the=20windows=20functions=20apparantly=20does?= =?UTF-8?q?=20more=20often=20than=20other=20systems.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/transfer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/transfer.c b/lib/transfer.c index 6180832aa0..c90744d0f3 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -380,6 +380,8 @@ CURLcode Curl_readwrite(struct connectdata *conn, /* we make sure that this socket isn't read more now */ k->keepon &= ~KEEP_READ; FD_ZERO(&k->rkeepfd); + /* for a progress meter/info update before going away */ + Curl_pgrsUpdate(conn); return CURLE_OK; } -- GitLab