[openssl] openssl-3.0 update
Dr. Paul Dale
pauli at openssl.org
Tue Jan 18 02:33:19 UTC 2022
The branch openssl-3.0 has been updated
via 5f7757265bfd7ccdf1973bf09f9d72634ea70949 (commit)
from 454358be49b55c313fe3781bc6f5f6c644787f87 (commit)
- Log -----------------------------------------------------------------
commit 5f7757265bfd7ccdf1973bf09f9d72634ea70949
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)
(cherry picked from commit f242ce9817157817b19ccb303fd436fe487539b3)
-----------------------------------------------------------------------
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 6518458907..924c650184 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