Commit 1070e0e2 authored by Ulf Möller's avatar Ulf Möller
Browse files

*** empty log message ***

parent 1b199605
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
+2 −4
Original line number Diff line number Diff line
@@ -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