mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 15:54:22 +02:00
upstream commit
Explicitly check for 100% completion to avoid potential floating point rounding error, which could cause progressmeter to report 99% on completion. While there invert the test so the 100% case is clearer. with & ok djm@ Upstream-ID: a166870c5878e422f3c71ff802e2ccd7032f715d
This commit is contained in:
parent
772e6cec0e
commit
e683fc6f1c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: progressmeter.c,v 1.44 2016/05/30 18:34:41 schwarze Exp $ */
|
/* $OpenBSD: progressmeter.c,v 1.45 2016/06/30 05:17:05 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2003 Nils Nordman. All rights reserved.
|
* Copyright (c) 2003 Nils Nordman. All rights reserved.
|
||||||
*
|
*
|
||||||
@ -171,10 +171,10 @@ refresh_progress_meter(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* percent of transfer done */
|
/* percent of transfer done */
|
||||||
if (end_pos != 0)
|
if (end_pos == 0 || cur_pos == end_pos)
|
||||||
percent = ((float)cur_pos / end_pos) * 100;
|
|
||||||
else
|
|
||||||
percent = 100;
|
percent = 100;
|
||||||
|
else
|
||||||
|
percent = ((float)cur_pos / end_pos) * 100;
|
||||||
snprintf(buf + strlen(buf), win_size - strlen(buf),
|
snprintf(buf + strlen(buf), win_size - strlen(buf),
|
||||||
" %3d%% ", percent);
|
" %3d%% ", percent);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user