From: Andrea Pappacoda Date: Mon, 30 Jan 2023 09:28:49 +0000 (+0100) Subject: BIO_read.pod: fix small typo X-Git-Tag: openssl-3.2.0-alpha1~1350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0414899887b98f973067f286ac126d8b529873e3;p=thirdparty%2Fopenssl.git BIO_read.pod: fix small typo Add missing `I` to `` CLA: trivial Reviewed-by: Hugo Landau Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/20169) --- diff --git a/doc/man3/BIO_read.pod b/doc/man3/BIO_read.pod index a2d8ab3af0e..5acc5b8906b 100644 --- a/doc/man3/BIO_read.pod +++ b/doc/man3/BIO_read.pod @@ -42,7 +42,7 @@ if present in the input data. On binary input there may be NUL characters within the string; in this case the return value (if nonnegative) may give an incorrect length. -BIO_get_line() attempts to read from BIO a line of data up to the next '\n' +BIO_get_line() attempts to read from BIO I a line of data up to the next '\n' or the maximum length I is reached and places the data in I. The returned string is always NUL-terminated and the '\n' is preserved if present in the input data.