From: Dr. David von Oheimb Date: Wed, 2 Sep 2020 10:56:49 +0000 (+0200) Subject: X509_NAME_print_ex.pod: re-format lines to fit within 80 chars limit X-Git-Tag: openssl-3.0.0-alpha7~328 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=115786793c2521af9dcf20a6114e9904e0c206aa;p=thirdparty%2Fopenssl.git X509_NAME_print_ex.pod: re-format lines to fit within 80 chars limit Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/12769) --- diff --git a/doc/man3/X509_NAME_print_ex.pod b/doc/man3/X509_NAME_print_ex.pod index a9532b18531..e5bdf1d5823 100644 --- a/doc/man3/X509_NAME_print_ex.pod +++ b/doc/man3/X509_NAME_print_ex.pod @@ -9,19 +9,21 @@ X509_NAME_oneline - X509_NAME printing routines #include - int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent, unsigned long flags); - int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, unsigned long flags); + int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, + int indent, unsigned long flags); + int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, + int indent, unsigned long flags); char *X509_NAME_oneline(const X509_NAME *a, char *buf, int size); int X509_NAME_print(BIO *bp, const X509_NAME *name, int obase); =head1 DESCRIPTION -X509_NAME_print_ex() prints a human readable version of B to BIO B. Each -line (for multiline formats) is indented by B spaces. The output format -can be extensively customised by use of the B parameter. +X509_NAME_print_ex() prints a human readable version of B to BIO B. +Each line (for multiline formats) is indented by B spaces. The +output format can be extensively customised by use of the B parameter. -X509_NAME_print_ex_fp() is identical to X509_NAME_print_ex() except the output is -written to FILE pointer B. +X509_NAME_print_ex_fp() is identical to X509_NAME_print_ex() +except the output is written to FILE pointer B. X509_NAME_oneline() prints an ASCII version of B to B. If B is B then a buffer is dynamically allocated and returned, and @@ -52,15 +54,18 @@ The complete set of the flags supported by X509_NAME_print_ex() is listed below. Several options can be ored together. The options B, B, -B and B determine the field separators -to use. Two distinct separators are used between distinct RelativeDistinguishedName -components and separate values in the same RDN for a multi-valued RDN. Multi-valued -RDNs are currently very rare so the second separator will hardly ever be used. - -B uses comma and plus as separators. B -uses comma and plus with spaces: this is more readable that plain comma and plus. -B uses spaced semicolon and plus. B uses -spaced newline and plus respectively. +B and B +determine the field separators to use. +Two distinct separators are used between distinct RelativeDistinguishedName +components and separate values in the same RDN for a multi-valued RDN. +Multi-valued RDNs are currently very rare +so the second separator will hardly ever be used. + +B uses comma and plus as separators. +B uses comma and plus with spaces: +this is more readable that plain comma and plus. +B uses spaced semicolon and plus. +B uses spaced newline and plus respectively. If B is set the whole DN is printed in reversed order. @@ -84,18 +89,21 @@ control how each field value is displayed. In addition a number options can be set for commonly used formats. -B sets options which produce an output compatible with RFC2253 it -is equivalent to: - C - +B sets options which produce an output compatible with RFC2253. +It is equivalent to: + C B is a more readable one line format which is the same as: - C + C B is a multiline format which is the same as: - C + C -B uses a format identical to X509_NAME_print(): in fact it calls X509_NAME_print() internally. +B uses a format identical to X509_NAME_print(): +in fact it calls X509_NAME_print() internally. =head1 RETURN VALUES @@ -103,9 +111,9 @@ X509_NAME_oneline() returns a valid string on success or NULL on error. X509_NAME_print() returns 1 on success or 0 on error. -X509_NAME_print_ex() and X509_NAME_print_ex_fp() return 1 on success or 0 on error -if the B is set, which is the same as X509_NAME_print(). Otherwise, -it returns -1 on error or other values on success. +X509_NAME_print_ex() and X509_NAME_print_ex_fp() return 1 on success or 0 on +error if the B is set, which is the same as X509_NAME_print(). +Otherwise, it returns -1 on error or other values on success. =head1 SEE ALSO