Commit c06271bc authored by Richard Levitte's avatar Richard Levitte
Browse files

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

  debugging code that's seldom used.
parent 92e5882a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -264,7 +264,7 @@ int tls1_change_cipher_state(SSL *s, int which)
	{
	{
        int ki;
        int ki;
        for (ki=0; ki<s->s3->tmp.key_block_length; 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 */
#endif	/* KSSL_DEBUG */