Skip to content

Commit e67ddd1

Browse files
committed
RT 1528; misleading debug print, "pre-master" should be "master key"
1 parent c7ada16 commit e67ddd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ssl/t1_enc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ printf("client random\n");
655655
{ int z; for (z=0; z<SSL3_RANDOM_SIZE; z++) printf("%02X%c",s->s3->client_random[z],((z+1)%16)?' ':'\n'); }
656656
printf("server random\n");
657657
{ int z; for (z=0; z<SSL3_RANDOM_SIZE; z++) printf("%02X%c",s->s3->server_random[z],((z+1)%16)?' ':'\n'); }
658-
printf("pre-master\n");
658+
printf("master key\n");
659659
{ int z; for (z=0; z<s->session->master_key_length; z++) printf("%02X%c",s->session->master_key[z],((z+1)%16)?' ':'\n'); }
660660
#endif
661661
if (!tls1_generate_key_block(s,p1,p2,num))

0 commit comments

Comments
 (0)