]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
doc/man3/OSSL_PARAM.pod: Correct the type of data_type
authorAlex Shaindlin <me@ashaindlin.com>
Wed, 18 Sep 2024 09:29:19 +0000 (12:29 +0300)
committerTomas Mraz <tomas@openssl.org>
Thu, 19 Sep 2024 18:53:41 +0000 (20:53 +0200)
CLA: trivial

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/25486)

doc/man3/OSSL_PARAM.pod

index 1e5bf06cf767a7a339cd309a36d54f04fab1cc53..22fd0f0d7dd7f35a2c754405b2c893a4ebddf461 100644 (file)
@@ -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 */