Bring SSL_group_to_name docs in line with API definition

docs say the SSL object in this function is const, but the api doesn't
qualify it as such.  Adjust the docs to match the definition

Reviewed-by: Ben Kaduk <kaduk@mit.edu>
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23785)
This commit is contained in:
Neil Horman 2024-03-08 15:06:33 -05:00
parent bf7ae259a4
commit 53a8728686

View File

@ -8,7 +8,7 @@ SSL_group_to_name - get name of group
#include <openssl/ssl.h>
const char *SSL_group_to_name(const SSL *ssl, int id);
const char *SSL_group_to_name(SSL *ssl, int id);
=head1 DESCRIPTION