diff options
author | willmafh <willmafh@hotmail.com> | 2024-03-01 14:12:21 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-05-13 11:10:35 +0200 |
commit | fa4ee4043473185a5894274a2fa7fa2c4dc15a3c (patch) | |
tree | 34ce32abfc73245b8db494904576a2810ad62d0e /ssl/ssl_sess.c | |
parent | Implement riscv_vlen_asm for riscv32 (diff) | |
download | openssl-fa4ee4043473185a5894274a2fa7fa2c4dc15a3c.tar.xz openssl-fa4ee4043473185a5894274a2fa7fa2c4dc15a3c.zip |
Typo fixes
and an addition of an empty line to follow the code style
CLA: trivial
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23721)
Diffstat (limited to 'ssl/ssl_sess.c')
-rw-r--r-- | ssl/ssl_sess.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/ssl_sess.c b/ssl/ssl_sess.c index 3857e027ee..e7c5c2a36f 100644 --- a/ssl/ssl_sess.c +++ b/ssl/ssl_sess.c @@ -287,6 +287,7 @@ const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len) *len = (unsigned int)s->session_id_length; return s->session_id; } + const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *s, unsigned int *len) { |