*** empty log message ***

This commit is contained in:
Ulf Möller 2000-02-27 00:00:56 +00:00
parent 1b199605c4
commit 1070e0e2ee
2 changed files with 3 additions and 5 deletions

View 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
bnbug: bnbug.c ../../libcrypto.a
bnbug: bnbug.c ../../libcrypto.a top
cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
lib: $(LIBOBJ)

View File

@ -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