From 094fb13876f58c4f0f96d32cd439015fb373c58c Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 21 Sep 2012 13:08:26 +0000 Subject: [PATCH] * ssl/t1_enc.c (tls1_change_cipher_state): Stupid bug. Fortunately in debugging code that's seldom used. --- ssl/t1_enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c index 793ea43e90..5a0bd66e4b 100644 --- a/ssl/t1_enc.c +++ b/ssl/t1_enc.c @@ -350,7 +350,7 @@ int tls1_change_cipher_state(SSL *s, int which) { int i; for (i=0; is3->tmp.key_block_length; i++) - printf("%02x", key_block[i]); printf("\n"); + printf("%02x", s->s3->tmp.key_block[i]); printf("\n"); } #endif /* KSSL_DEBUG */ -- 2.40.0