summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMichael Baentsch <57787676+baentsch@users.noreply.github.com>2022-06-07 08:28:26 +0200
committerTomas Mraz <tomas@openssl.org>2022-06-16 15:41:25 +0200
commit87e1caaa24bfaf14912b6ad7965429bdf7c991b3 (patch)
tree740723c16f614960d7d1cc0433fde13a9934bece /include
parent10d8a109be0fe50315e4eeb0676f6571914cd47a (diff)
Fix for OSSL_PARAM sample code referencing OSSL_PARAM_UTF8_PTR
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18490) (cherry picked from commit 809526a06c1305d67a8f231ca15cd27ec800efce)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/core_names.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/openssl/core_names.h b/include/openssl/core_names.h
index b549dae916..eed7480c9c 100644
--- a/include/openssl/core_names.h
+++ b/include/openssl/core_names.h
@@ -21,9 +21,9 @@ extern "C" {
#define OSSL_PROV_PARAM_CORE_MODULE_FILENAME "module-filename" /* utf8_ptr */
/* Well known parameter names that Providers can define */
-#define OSSL_PROV_PARAM_NAME "name" /* utf8_string */
-#define OSSL_PROV_PARAM_VERSION "version" /* utf8_string */
-#define OSSL_PROV_PARAM_BUILDINFO "buildinfo" /* utf8_string */
+#define OSSL_PROV_PARAM_NAME "name" /* utf8_ptr */
+#define OSSL_PROV_PARAM_VERSION "version" /* utf8_ptr */
+#define OSSL_PROV_PARAM_BUILDINFO "buildinfo" /* utf8_ptr */
#define OSSL_PROV_PARAM_STATUS "status" /* uint */
#define OSSL_PROV_PARAM_SECURITY_CHECKS "security-checks" /* uint */