* 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:32 +00:00
parent 92e5882aca
commit c06271bc35

View File

@ -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 */