projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13bf48c
)
Add a comment.
author
Bodo Möller
<bodo@openssl.org>
Sun, 27 Feb 2000 11:48:32 +0000
(11:48 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Sun, 27 Feb 2000 11:48:32 +0000
(11:48 +0000)
crypto/bn/bn_print.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_print.c
b/crypto/bn/bn_print.c
index 2db550d47b93bcf7bf022ef978eed441a0281155..782a96e7e0a69a2f6f5f84aecf0e2673f373fd07 100644
(file)
--- a/
crypto/bn/bn_print.c
+++ b/
crypto/bn/bn_print.c
@@
-326,7
+326,7
@@
void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n)
int i;
fprintf(o, "%s=", a);
for (i=n-1;i>=0;i--)
- fprintf(o, "%08lX", b[i]);
+ fprintf(o, "%08lX", b[i]);
/* assumes 32-bit BN_ULONG */
fprintf(o, "\n");
}
#endif