summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2012-09-21 13:08:32 +0000
committerRichard Levitte <levitte@openssl.org>2012-09-21 13:08:32 +0000
commitc06271bc350e2fdb51ee702996a95e6931a69050 (patch)
treefd0d20af2b0ea66177e975633ec3542ff8fa172b /ssl
parent92e5882aca53940f883d810bb7116d2083c19045 (diff)
* ssl/t1_enc.c (tls1_change_cipher_state): Stupid bug. Fortunately in
debugging code that's seldom used.
Diffstat (limited to 'ssl')
-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 34830988fc..3516fe15be 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -264,7 +264,7 @@ int tls1_change_cipher_state(SSL *s, int which)
{
int ki;
for (ki=0; ki<s->s3->tmp.key_block_length; ki++)
- printf("%02x", key_block[ki]); printf("\n");
+ printf("%02x", s->s3->tmp.key_block[ki]); printf("\n");
}
#endif /* KSSL_DEBUG */