| Index: openssl/crypto/bn/bn_ctx.c
 | 
| ===================================================================
 | 
| --- openssl/crypto/bn/bn_ctx.c	(revision 105093)
 | 
| +++ openssl/crypto/bn/bn_ctx.c	(working copy)
 | 
| @@ -161,7 +161,7 @@
 | 
|  	fprintf(stderr,"(%08x): ", (unsigned int)ctx);
 | 
|  	while(bnidx < ctx->used)
 | 
|  		{
 | 
| -		fprintf(stderr,"%02x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax);
 | 
| +		fprintf(stderr,"%03x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax);
 | 
|  		if(!(bnidx % BN_CTX_POOL_SIZE))
 | 
|  			item = item->next;
 | 
|  		}
 | 
| @@ -171,8 +171,8 @@
 | 
|  	while(fpidx < stack->depth)
 | 
|  		{
 | 
|  		while(bnidx++ < stack->indexes[fpidx])
 | 
| -			fprintf(stderr,"   ");
 | 
| -		fprintf(stderr,"^^ ");
 | 
| +			fprintf(stderr,"    ");
 | 
| +		fprintf(stderr,"^^^ ");
 | 
|  		bnidx++;
 | 
|  		fpidx++;
 | 
|  		}
 | 
| 
 |