The ssl/t1_enc.c file doesn't compile with '-DTLS_DEBUG':

  ssl/t1_enc.c: In function 'tls1_setup_key_block':
  ssl/t1_enc.c:528:30: error: 'p1' undeclared (first use in this function)
             printf("%02X%c", p1[z], ((z + 1) % 16) ? ' ' : '\n');

I assume that should be:
   printf("%02X%c", p[z], ((z + 1) % 16) ? ' ' : '\n');

Besides, enabling '-DCIPHER_DEBUG', also generates lots of warnings.


-- 
--gv
-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

Reply via email to