From: Alex Shaindlin Date: Wed, 18 Sep 2024 09:29:19 +0000 (+0300) Subject: doc/man3/OSSL_PARAM.pod: Correct the type of data_type X-Git-Tag: openssl-3.5.0-alpha1~1095 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5a8f65b8069b8c6119e7d2ca2a25219b95afdc1;p=thirdparty%2Fopenssl.git 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) --- diff --git a/doc/man3/OSSL_PARAM.pod b/doc/man3/OSSL_PARAM.pod index 1e5bf06cf76..22fd0f0d7dd 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 */