From: Richard Levitte Date: Thu, 22 Sep 2016 08:15:02 +0000 (+0200) Subject: Fix error message typo, wrong function code X-Git-Tag: OpenSSL_1_1_1-pre1~3475 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a449b47c7d8e20efc8cc524ed695a060b11ef889;p=openssl Fix error message typo, wrong function code Reviewed-by: Matt Caswell --- diff --git a/ssl/statem/statem.c b/ssl/statem/statem.c index 8bc1febd10..5faf6aece7 100644 --- a/ssl/statem/statem.c +++ b/ssl/statem/statem.c @@ -549,7 +549,7 @@ static SUB_STATE_RETURN read_state_machine(SSL *s) (int)s->s3->tmp.message_size + SSL3_HM_HEADER_LENGTH)) { ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); - SSLerr(SSL_F_TLS_GET_MESSAGE_HEADER, ERR_R_BUF_LIB); + SSLerr(SSL_F_READ_STATE_MACHINE, ERR_R_BUF_LIB); return SUB_STATE_ERROR; }