Tartarus CVS: putty simon

tartarus-commits-admin@lists.tartarus.org tartarus-commits-admin@lists.tartarus.org
Sat, 08 Sep 2001 16:16:30 +0100


CVSROOT:	/home/cvs
Module name:	putty
Changes by:	simon	01/09/08 16:16:30

Modified files:
	.              : scp.c 

Log message:
Fix potential float screwup in scp percentage indicator. (Don't
compute (100*a)/b. Instead compute 100*(a/b), because that way
there's no chance that 100*a will become inexact enough to fail to
yield 100 when a==b.)