mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
* ssl/t1_enc.c (tls1_change_cipher_state): Stupid bug. Fortunately in
debugging code that's seldom used.
This commit is contained in:
parent
b8c5929130
commit
4d88fc8173
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user