diff options
author | Ulf Möller <ulf@openssl.org> | 2000-02-27 01:00:56 +0100 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2000-02-27 01:00:56 +0100 |
commit | 1070e0e2eeae712bc864b8f1506c91406488ea31 (patch) | |
tree | 9d840cde2a1d4dee0a63ea431959c6e284bfe006 | |
parent | workaround no longer needed (diff) | |
download | openssl-1070e0e2eeae712bc864b8f1506c91406488ea31.tar.xz openssl-1070e0e2eeae712bc864b8f1506c91406488ea31.zip |
*** empty log message ***
Diffstat (limited to '')
-rw-r--r-- | crypto/bn/Makefile.ssl | 2 | ||||
-rw-r--r-- | crypto/bn/bn_print.c | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/crypto/bn/Makefile.ssl b/crypto/bn/Makefile.ssl index 07239ee8c1..11dd86f8bb 100644 --- a/crypto/bn/Makefile.ssl +++ b/crypto/bn/Makefile.ssl @@ -62,7 +62,7 @@ bn_prime.h: bn_prime.pl 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) diff --git a/crypto/bn/bn_print.c b/crypto/bn/bn_print.c index 131aad2e66..2db550d47b 100644 --- a/crypto/bn/bn_print.c +++ b/crypto/bn/bn_print.c @@ -325,10 +325,8 @@ void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n) { 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 |