*** empty log message ***
authorUlf Möller <ulf@openssl.org>
Sun, 27 Feb 2000 00:00:56 +0000 (00:00 +0000)
committerUlf Möller <ulf@openssl.org>
Sun, 27 Feb 2000 00:00:56 +0000 (00:00 +0000)
crypto/bn/Makefile.ssl
crypto/bn/bn_print.c

index 07239ee8c11ed2fded6b4525dacaea4e4c70f05c..11dd86f8bb8eb3e80e821c94043b0bc862d25879 100644 (file)
@@ -62,7 +62,7 @@ bn_prime.h: bn_prime.pl
 divtest: divtest.c ../../libcrypto.a
        cc -I../../include divtest.c -o divtest ../../libcrypto.a
 
 divtest: divtest.c ../../libcrypto.a
        cc -I../../include divtest.c -o divtest ../../libcrypto.a
 
-bnbug: bnbug.c ../../libcrypto.a
+bnbug: bnbug.c ../../libcrypto.a top
        cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
 
 lib:   $(LIBOBJ)
        cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
 
 lib:   $(LIBOBJ)
index 131aad2e669648e30b0d15515f5941fbe76d11c3..2db550d47b93bcf7bf022ef978eed441a0281155 100644 (file)
@@ -325,10 +325,8 @@ void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n)
        {
        int i;
        fprintf(o, "%s=", a);
        {
        int i;
        fprintf(o, "%s=", a);
-       for (i=n;i>=0;i--)
-               {
-               fprintf(o, "[%08lX]", b[i]);
-               }
+       for (i=n-1;i>=0;i--)
+               fprintf(o, "%08lX", b[i]);
        fprintf(o, "\n");
        }
 #endif
        fprintf(o, "\n");
        }
 #endif