aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/t1_enc.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-02-18 07:59:41 -0500
committerRich Salz <rsalz@openssl.org>2016-02-18 17:19:32 -0500
commitd1776fdecd6a8677a281a85498a74a8480739689 (patch)
treed99c85139e4cb14dcebfe900d4289c5c1c4713ec /ssl/t1_enc.c
parent6baa3b430555d25b6eee6440a6b8bee80eaabfc3 (diff)
downloadopenssl-d1776fdecd6a8677a281a85498a74a8480739689.tar.gz
Fix {TLS,CIPHER}_DEBUG compiles.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/t1_enc.c')
-rw-r--r--ssl/t1_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
index 995ae404f5..6b3a73e39e 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -525,7 +525,7 @@ int tls1_setup_key_block(SSL *s)
{
int z;
for (z = 0; z < num; z++)
- printf("%02X%c", p1[z], ((z + 1) % 16) ? ' ' : '\n');
+ printf("%02X%c", p[z], ((z + 1) % 16) ? ' ' : '\n');
}
#endif