From f7497fc69c121ffae2f1718868ed06c3beb32e86 Mon Sep 17 00:00:00 2001 From: Alex Shaindlin Date: Wed, 18 Sep 2024 12:29:19 +0300 Subject: [PATCH] doc/man3/OSSL_PARAM.pod: Correct the type of data_type CLA: trivial Reviewed-by: Richard Levitte Reviewed-by: Dmitry Belyavskiy Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/25486) (cherry picked from commit f5a8f65b8069b8c6119e7d2ca2a25219b95afdc1) --- doc/man3/OSSL_PARAM.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/man3/OSSL_PARAM.pod b/doc/man3/OSSL_PARAM.pod index 1e5bf06cf7..22fd0f0d7d 100644 --- a/doc/man3/OSSL_PARAM.pod +++ b/doc/man3/OSSL_PARAM.pod @@ -11,7 +11,7 @@ OSSL_PARAM - a structure to pass or request object parameters typedef struct ossl_param_st OSSL_PARAM; struct ossl_param_st { const char *key; /* the name of the parameter */ - unsigned char data_type; /* declare what kind of content is in data */ + unsigned int data_type; /* declare what kind of content is in data */ void *data; /* value being passed in or out */ size_t data_size; /* data size */ size_t return_size; /* returned size */