summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Horman <nhorman@openssl.org>2024-03-08 15:06:33 -0500
committerNeil Horman <nhorman@openssl.org>2024-03-09 19:05:23 -0500
commit53a8728686663f4fe044cd1a5757f6fcfd777317 (patch)
treee8bcdb8ad13e66f98e9a5f4bdf4af97e56162a50
parentbf7ae259a405a642dee93b18ffe5b875a056045a (diff)
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)
-rw-r--r--doc/man3/SSL_group_to_name.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/SSL_group_to_name.pod b/doc/man3/SSL_group_to_name.pod
index 4551a1264c..f1a706b421 100644
--- a/doc/man3/SSL_group_to_name.pod
+++ b/doc/man3/SSL_group_to_name.pod
@@ -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