From: Alexandre Perrin Date: Fri, 13 Jul 2018 08:32:42 +0000 (+0200) Subject: Documentation typo fix in BN_bn2bin.pod X-Git-Tag: OpenSSL_1_0_2p~26 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3d5d123d86532391249d7b33ca5da12d0a5599f3;p=oweals%2Fopenssl.git Documentation typo fix in BN_bn2bin.pod Change the description for BN_hex2bn() so that it uses the same BIGNUM argument name as its prototype. CLA: trivial Reviewed-by: Matthias St. Pierre Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/6712) --- diff --git a/doc/crypto/BN_bn2bin.pod b/doc/crypto/BN_bn2bin.pod index f6bb484f90..075aec37fa 100644 --- a/doc/crypto/BN_bn2bin.pod +++ b/doc/crypto/BN_bn2bin.pod @@ -39,8 +39,8 @@ numbers, the string is prefaced with a leading '-'. The string must be freed later using OPENSSL_free(). BN_hex2bn() converts the string B containing a hexadecimal number -to a B and stores it in **B. If *B is NULL, a new -B is created. If B is NULL, it only computes the number's +to a B and stores it in **B. If *B is NULL, a new +B is created. If B is NULL, it only computes the number's length in hexadecimal digits. If the string starts with '-', the number is negative. A "negative zero" is converted to zero.