ssl/s3_srvr.c: Fix typo introduced via 69f682374868b.
authormancha security <mancha1@zoho.com>
Sat, 2 May 2015 22:34:46 +0000 (22:34 +0000)
committerMatt Caswell <matt@openssl.org>
Sun, 3 May 2015 22:36:25 +0000 (23:36 +0100)
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>
ssl/s3_srvr.c

index d2c89957e22fe8af19af21dbe6be8f301502665b..7a399673b1d6b4f1c4c1fc0cd11fb7c4f75c25bf 100644 (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;
         }