From: Matt Caswell Date: Fri, 27 Apr 2018 10:24:01 +0000 (+0100) Subject: Fix comment in ssl_locl.h X-Git-Tag: OpenSSL_1_1_0i~135 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0a878015c6355ca00832579361907ce89662b321;p=oweals%2Fopenssl.git 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/6114) --- diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 85c754968c..f5b03df5a3 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -540,7 +540,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