Changes from 0.9.6-stable
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user