summaryrefslogtreecommitdiffstats
path: root/doc/man3/BN_bn2bin.pod
diff options
context:
space:
mode:
authorKinshuk Dua <kinshukdua@gmail.com>2021-10-22 13:02:23 +0530
committerTomas Mraz <tomas@openssl.org>2021-10-26 17:07:14 +0200
commit8606d3a919b265d4fd29606aab7be0fd3c78f7c2 (patch)
treedb4351cfd1087b13d8a369d04c059a3dc0b3989a /doc/man3/BN_bn2bin.pod
parent77557dff5d656bd1574b33cab1c1e3b188fe0992 (diff)
Doc: replace `NULL` terminated with `NUL`
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Ben Kaduk <kaduk@mit.edu> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16885) (cherry picked from commit 089df6f135b7cef4e7d0e7b7acecb1d90f5ef3ed)
Diffstat (limited to 'doc/man3/BN_bn2bin.pod')
-rw-r--r--doc/man3/BN_bn2bin.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/BN_bn2bin.pod b/doc/man3/BN_bn2bin.pod
index d50107409b..9637655127 100644
--- a/doc/man3/BN_bn2bin.pod
+++ b/doc/man3/BN_bn2bin.pod
@@ -94,7 +94,7 @@ BN_bin2bn() returns the B<BIGNUM>, NULL on error.
BN_bn2binpad() returns the number of bytes written or -1 if the supplied
buffer is too small.
-BN_bn2hex() and BN_bn2dec() return a null-terminated string, or NULL
+BN_bn2hex() and BN_bn2dec() return a NUL-terminated string, or NULL
on error. BN_hex2bn() and BN_dec2bn() return the number of characters
used in parsing, or 0 on error, in which
case no new B<BIGNUM> will be created.