From: Petr Gotthard Date: Sun, 18 Jul 2021 12:19:11 +0000 (+0200) Subject: doc: fix OPENSSL_VERSION_NUMBER length in the synopsis X-Git-Tag: openssl-3.0.0-beta2~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=718d55f43fb9c076c88ea1be4abe86b0f46a10d2;p=thirdparty%2Fopenssl.git doc: fix OPENSSL_VERSION_NUMBER length in the synopsis The number has 8 digits (not 9). It is a single integer `0xMNN00PP0L`. Reviewed-by: Richard Levitte Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/16106) --- diff --git a/doc/man3/OpenSSL_version.pod b/doc/man3/OpenSSL_version.pod index 120a936f83b..034bd718fec 100644 --- a/doc/man3/OpenSSL_version.pod +++ b/doc/man3/OpenSSL_version.pod @@ -41,7 +41,7 @@ OpenSSL_version_num, OPENSSL_info Deprecated: /* from openssl/opensslv.h */ - #define OPENSSL_VERSION_NUMBER 0xnnnnnnnnnL + #define OPENSSL_VERSION_NUMBER 0xnnnnnnnnL /* from openssl/crypto.h */ unsigned long OpenSSL_version_num();