mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
(copy_file_file): fix the ETA calculation.
Pass only the size of the remaining part of file to copy_file_file_display_progress(). Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
bf9a279d1a
commit
6d3c41082c
@ -2766,7 +2766,7 @@ copy_file_file (file_op_total_context_t *tctx, file_op_context_t *ctx,
|
|||||||
if (is_first_time || usecs > FILEOP_UPDATE_INTERVAL_US)
|
if (is_first_time || usecs > FILEOP_UPDATE_INTERVAL_US)
|
||||||
{
|
{
|
||||||
copy_file_file_display_progress (tctx, ctx, tv_current, tv_transfer_start,
|
copy_file_file_display_progress (tctx, ctx, tv_current, tv_transfer_start,
|
||||||
file_size, file_part);
|
file_size - ctx->do_reget, file_part);
|
||||||
tv_last_update = tv_current;
|
tv_last_update = tv_current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user