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:
Matthieu Crapet 2014-08-08 18:03:58 -04:00 committed by Rich Salz
parent a90081576c
commit 6d03125ccf

View File

@ -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;