CVSROOT:        /cvs
Module name:    src
Changes by:     js...@cvs.openbsd.org   2021/06/13 09:34:41

Modified files:
        lib/libssl     : ssl_locl.h ssl_pkt.c t1_enc.c 

Log message:
Remove tls1_alert_code().

After running the preprocessor, this function becomes:

switch (code) {
case 0:
return (0);
case 10:
return (10);
case 20:
return (20);
...
}

Its intended purpose was to prevent SSLv3 alerts being sent from TLS code,
however now that we've removed "no_certificate" from LibreSSL's reach, it
no longer does anything useful.

ok tb@

Reply via email to