mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
RT 1505: Use SSL3_AL_FATAL not "2"
Use SSL3_AL_FATAL instead of the literal constant "2" Every bit of cleanup helps. Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
parent
a90081576c
commit
6d03125ccf
@ -1793,7 +1793,7 @@ int ssl3_send_alert(SSL *s, int level, int desc)
|
||||
desc = SSL_AD_HANDSHAKE_FAILURE; /* SSL 3.0 does not have protocol_version alerts */
|
||||
if (desc < 0) return -1;
|
||||
/* If a fatal one, remove from cache */
|
||||
if ((level == 2) && (s->session != NULL))
|
||||
if ((level == SSL3_AL_FATAL) && (s->session != NULL))
|
||||
SSL_CTX_remove_session(s->ctx,s->session);
|
||||
|
||||
s->s3->alert_dispatch=1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user