projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
*** empty log message ***
[openssl.git]
/
crypto
/
bn
/
bn_print.c
diff --git
a/crypto/bn/bn_print.c
b/crypto/bn/bn_print.c
index
131aad2
..
2db550d
100644
(file)
--- 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