From: Benjamin Kaduk Date: Wed, 27 Jan 2021 20:19:08 +0000 (-0800) Subject: Remove unused 'peer_type' from SSL_SESSION X-Git-Tag: openssl-3.0.0-alpha12~90 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3bc0b621a7baf1a11bc5cad69a287ad093674d68;p=thirdparty%2Fopenssl.git Remove unused 'peer_type' from SSL_SESSION This field has not been used since #3858 was merged in 2017 when we moved to a table-based lookup for certificate type properties instead of an index-based one. Reviewed-by: Kurt Roeckx (Merged from https://github.com/openssl/openssl/pull/13991) --- diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h index 5956b6c834e..2687a47c2a8 100644 --- a/ssl/ssl_local.h +++ b/ssl/ssl_local.h @@ -585,7 +585,6 @@ struct ssl_session_st { int not_resumable; /* This is the cert and type for the other end. */ X509 *peer; - int peer_type; /* Certificate chain peer sent. */ STACK_OF(X509) *peer_chain; /* diff --git a/ssl/statem/statem_clnt.c b/ssl/statem/statem_clnt.c index 1e9ab009762..83862e076d0 100644 --- a/ssl/statem/statem_clnt.c +++ b/ssl/statem/statem_clnt.c @@ -1916,7 +1916,6 @@ WORK_STATE tls_post_process_server_certificate(SSL *s, WORK_STATE wst) return WORK_ERROR; } } - s->session->peer_type = certidx; X509_free(s->session->peer); X509_up_ref(x);