[openssl-commits] [openssl] master update

Matt Caswell matt at openssl.org
Thu Sep 29 14:51:46 UTC 2016


The branch master has been updated
       via  e4e1aa903e624044d3319622fc50222f1b2c7328 (commit)
      from  0023baffb8f648c22d397bfa5e1cc8749749bd29 (commit)


- Log -----------------------------------------------------------------
commit e4e1aa903e624044d3319622fc50222f1b2c7328
Author: Matt Caswell <matt at openssl.org>
Date:   Thu Sep 29 15:32:35 2016 +0100

    Fix an mis-matched function code so that "make update" doesn't fail
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 ssl/statem/statem_srvr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssl/statem/statem_srvr.c b/ssl/statem/statem_srvr.c
index 3c3544c..b9eb634 100644
--- a/ssl/statem/statem_srvr.c
+++ b/ssl/statem/statem_srvr.c
@@ -1610,7 +1610,7 @@ int tls_construct_server_key_exchange(SSL *s)
             || !ssl_set_handshake_header2(s, &pkt,
                                           SSL3_MT_SERVER_KEY_EXCHANGE)
             || !WPACKET_get_total_written(&pkt, &paramoffset)) {
-        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
+        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
         goto f_err;
     }
 


More information about the openssl-commits mailing list