diff options
Diffstat (limited to 'src/lib/libcrypto/bn/bn_ctx.c')
-rw-r--r-- | src/lib/libcrypto/bn/bn_ctx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bn/bn_ctx.c b/src/lib/libcrypto/bn/bn_ctx.c index b3452f1a91..3f2256f675 100644 --- a/src/lib/libcrypto/bn/bn_ctx.c +++ b/src/lib/libcrypto/bn/bn_ctx.c | |||
@@ -161,7 +161,7 @@ static void ctxdbg(BN_CTX *ctx) | |||
161 | fprintf(stderr,"(%08x): ", (unsigned int)ctx); | 161 | fprintf(stderr,"(%08x): ", (unsigned int)ctx); |
162 | while(bnidx < ctx->used) | 162 | while(bnidx < ctx->used) |
163 | { | 163 | { |
164 | fprintf(stderr,"%02x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); | 164 | fprintf(stderr,"%03x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); |
165 | if(!(bnidx % BN_CTX_POOL_SIZE)) | 165 | if(!(bnidx % BN_CTX_POOL_SIZE)) |
166 | item = item->next; | 166 | item = item->next; |
167 | } | 167 | } |
@@ -171,8 +171,8 @@ static void ctxdbg(BN_CTX *ctx) | |||
171 | while(fpidx < stack->depth) | 171 | while(fpidx < stack->depth) |
172 | { | 172 | { |
173 | while(bnidx++ < stack->indexes[fpidx]) | 173 | while(bnidx++ < stack->indexes[fpidx]) |
174 | fprintf(stderr," "); | 174 | fprintf(stderr," "); |
175 | fprintf(stderr,"^^ "); | 175 | fprintf(stderr,"^^^ "); |
176 | bnidx++; | 176 | bnidx++; |
177 | fpidx++; | 177 | fpidx++; |
178 | } | 178 | } |