[openssl] master update

Dr. Paul Dale pauli at openssl.org
Tue Jan 18 02:32:52 UTC 2022


The branch master has been updated
       via  f242ce9817157817b19ccb303fd436fe487539b3 (commit)
      from  cfbb5fcf4424395a1a23751556ea12c56b80b57e (commit)


- Log -----------------------------------------------------------------
commit f242ce9817157817b19ccb303fd436fe487539b3
Author: Kevin Jones <kevin at vcsjones.com>
Date:   Sat Jan 15 01:38:41 2022 +0000

    Fix mistake in ERR_peek_error_all documentation.
    
    The `func` parameter was incorrect. It was documented as `const char *func`
    instead of `const char **func`.
    
    CLA: trivial
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/17522)

-----------------------------------------------------------------------

Summary of changes:
 doc/man3/ERR_get_error.pod | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/man3/ERR_get_error.pod b/doc/man3/ERR_get_error.pod
index b5374e7652..4019bdd541 100644
--- a/doc/man3/ERR_get_error.pod
+++ b/doc/man3/ERR_get_error.pod
@@ -31,7 +31,7 @@ ERR_get_error_line_data, ERR_peek_error_line_data, ERR_peek_last_error_line_data
                                  const char **func,
                                  const char **data, int *flags);
  unsigned long ERR_peek_error_all(const char **file, int *line,
-                                  const char *func,
+                                  const char **func,
                                   const char **data, int *flags);
  unsigned long ERR_peek_last_error_all(const char **file, int *line,
                                        const char *func,


More information about the openssl-commits mailing list