summaryrefslogtreecommitdiffstats
path: root/doc/man3/BN_bn2bin.pod
diff options
context:
space:
mode:
authorAlexandre Perrin <alex@kaworu.ch>2018-07-13 10:32:42 +0200
committerAlexandre Perrin <alex@atipik.ch>2018-07-13 10:42:15 +0200
commit1f4add418d3ef07da80be87bc4e696197c84468f (patch)
treee5104123247deab4b7de567e841ecc7715b8ed28 /doc/man3/BN_bn2bin.pod
parent03a5e5ae6304c75f611d3613bedf2019524ff0d6 (diff)
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 <Matthias.St.Pierre@ncp-e.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6712)
Diffstat (limited to 'doc/man3/BN_bn2bin.pod')
-rw-r--r--doc/man3/BN_bn2bin.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/BN_bn2bin.pod b/doc/man3/BN_bn2bin.pod
index dcff25195b..5da1ffd10d 100644
--- a/doc/man3/BN_bn2bin.pod
+++ b/doc/man3/BN_bn2bin.pod
@@ -55,8 +55,8 @@ freed later using OPENSSL_free().
BN_hex2bn() takes as many characters as possible from the string B<str>,
including the leading character '-' which means negative, to form a valid
hexadecimal number representation and converts them to a B<BIGNUM> and
-stores it in **B<bn>. If *B<bn> is NULL, a new B<BIGNUM> is created. If
-B<bn> is NULL, it only computes the length of valid representation.
+stores it in **B<a>. If *B<a> is NULL, a new B<BIGNUM> is created. If
+B<a> is NULL, it only computes the length of valid representation.
A "negative zero" is converted to zero.
BN_dec2bn() is the same using the decimal system.