From f054160a1923845f40d15457d1009420827f4c88 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 27 Apr 2018 11:24:01 +0100 Subject: [PATCH] Fix comment in ssl_locl.h The ciphers field in a session contains the stack of ciphers offered by the client. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/6113) --- ssl/ssl_locl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index d881458a6b..b32b23bedf 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -550,7 +550,7 @@ struct ssl_session_st { const SSL_CIPHER *cipher; unsigned long cipher_id; /* when ASN.1 loaded, this needs to be used to * load the 'cipher' structure */ - STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */ + STACK_OF(SSL_CIPHER) *ciphers; /* ciphers offered by the client */ CRYPTO_EX_DATA ex_data; /* application specific data */ /* * These are used to make removal of session-ids more efficient and to -- 2.25.1