* ssl/t1_enc.c (tls1_change_cipher_state): Stupid bug. Fortunately in

debugging code that's seldom used.
This commit is contained in:
Richard Levitte 2012-09-21 13:08:24 +00:00
parent b8c5929130
commit 4d88fc8173

View File

@ -361,7 +361,7 @@ int tls1_change_cipher_state(SSL *s, int which)
{
int i;
for (i=0; i<s->s3->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 */