ssl/s3_srvr.c: Fix typo introduced via 69f6823748.

Incorrect name used for SSL_AD_INTERNAL_ERROR.

Signed-off-by: mancha security <mancha1@zoho.com>
Signed-off-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
mancha security 2015-05-02 22:34:46 +00:00 committed by Matt Caswell
parent 5812e6f175
commit 59ef580a14

View File

@ -2537,7 +2537,7 @@ int ssl3_get_client_key_exchange(SSL *s)
session->master_key,
pms, outl);
if (s->session->master_key_length < 0) {
al = SSL_INTERNAL_ERROR;
al = SSL_AD_INTERNAL_ERROR;
SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
goto f_err;
}