Changes from 0.9.6-stable
This commit is contained in:
@@ -630,7 +630,7 @@ fmtfp(
|
||||
multiplying by a factor of 10 */
|
||||
fracpart = roundv((pow10(max)) * (ufvalue - intpart));
|
||||
|
||||
if (fracpart >= pow10(max)) {
|
||||
if (fracpart >= (long)pow10(max)) {
|
||||
intpart++;
|
||||
fracpart -= (long)pow10(max);
|
||||
}
|
||||
|
||||
@@ -6,5 +6,5 @@
|
||||
for i in $*
|
||||
do
|
||||
n=`openssl x509 -issuer -noout -in $i`
|
||||
echo "$i\t$n"
|
||||
echo "$i $n"
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user