]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Bring SSL_group_to_name docs in line with API definition
authorNeil Horman <nhorman@openssl.org>
Fri, 8 Mar 2024 20:06:33 +0000 (15:06 -0500)
committerNeil Horman <nhorman@openssl.org>
Sun, 10 Mar 2024 00:05:23 +0000 (19:05 -0500)
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)

doc/man3/SSL_group_to_name.pod

index 4551a1264c29361451135b69d70773f0690d05da..f1a706b4217acec21a22e838f40bfc762dc42d52 100644 (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