Changes from 0.9.6-stable

This commit is contained in:
Richard Levitte
2004-03-23 15:18:17 +00:00
parent 85994a9572
commit 20d26fbd12
2 changed files with 2 additions and 2 deletions

View File

@@ -630,7 +630,7 @@ fmtfp(
multiplying by a factor of 10 */ multiplying by a factor of 10 */
fracpart = roundv((pow10(max)) * (ufvalue - intpart)); fracpart = roundv((pow10(max)) * (ufvalue - intpart));
if (fracpart >= pow10(max)) { if (fracpart >= (long)pow10(max)) {
intpart++; intpart++;
fracpart -= (long)pow10(max); fracpart -= (long)pow10(max);
} }

View File

@@ -6,5 +6,5 @@
for i in $* for i in $*
do do
n=`openssl x509 -issuer -noout -in $i` n=`openssl x509 -issuer -noout -in $i`
echo "$i\t$n" echo "$i $n"
done done