From a333bddeeb6ce46f0a7d218d78fa700c881f2833 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 20 Feb 2002 13:38:34 +0000 Subject: =?UTF-8?q?Andr=E9s=20Garc=EDa=20solved=20bug=20report=20#515228?= =?UTF-8?q?=20by=20making=20sure=20the=20progress=20meter=20is=20updated?= =?UTF-8?q?=20even=20if=20everything=20is=20read=20in=20one=20single=20pas?= =?UTF-8?q?s,=20as=20the=20windows=20functions=20apparantly=20does=20more?= =?UTF-8?q?=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(+) (limited to 'lib/transfer.c') diff --git a/lib/transfer.c b/lib/transfer.c index 6180832aa..c90744d0f 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; } -- cgit v1.2.3