Changes from 0.9.6-stable
authorRichard Levitte <levitte@openssl.org>
Tue, 23 Mar 2004 15:18:17 +0000 (15:18 +0000)
committerRichard Levitte <levitte@openssl.org>
Tue, 23 Mar 2004 15:18:17 +0000 (15:18 +0000)
crypto/bio/b_print.c
tools/c_issuer

index a3f05ac2dad8b2645131ee1b8ba40c1b4039aed9..37dad9d658c77fed24b35b41a95e5ca866be450f 100644 (file)
@@ -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);
     }
index 4c691201bb473cb93b5a13c55ca83fa0ea4acebe..55821ab740d5ac02475fb4cfe9e32a22837b5b95 100644 (file)
@@ -6,5 +6,5 @@
 for i in $*
 do
        n=`openssl x509 -issuer -noout -in $i`
-       echo "$i\t$n"
+       echo "$i        $n"
 done