[openssl] master update

Richard Levitte levitte at openssl.org
Wed Jan 13 22:34:02 UTC 2021


The branch master has been updated
       via  ad2cc1a08e67207f566e80c6b1f342294364901f (commit)
      from  ab2160895262abbb9501a859d86b8740bd850a40 (commit)


- Log -----------------------------------------------------------------
commit ad2cc1a08e67207f566e80c6b1f342294364901f
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Jan 12 16:05:55 2021 +0100

    Make the OSSL_HTTP manual conform with man-pages(7)
    
    Details from man-pages(7) that are used:
    
        Formatting conventions for manual pages describing functions
    
            ...
            Variable names should, like argument names, be specified in italics.
            ...
    
        Formatting conventions (general)
    
            ...
            Special macros, which are usually in uppercase, are in bold.
            Exception: don't boldface NULL.
            ...
    
    Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
    (Merged from https://github.com/openssl/openssl/pull/13847)

-----------------------------------------------------------------------

Summary of changes:
 doc/man3/OSSL_HTTP_transfer.pod | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/man3/OSSL_HTTP_transfer.pod b/doc/man3/OSSL_HTTP_transfer.pod
index f78d96be1f..4839b975a6 100644
--- a/doc/man3/OSSL_HTTP_transfer.pod
+++ b/doc/man3/OSSL_HTTP_transfer.pod
@@ -198,15 +198,15 @@ where IPv6 addresses should be enclosed in square brackets C<[> and C<]>.
 The port component is optional and defaults to "443" for HTTPS, else "80".
 If the I<pport_num> argument is NULL the port specification
 can be in mnemonic form such as "http" like with L<BIO_set_conn_port(3)>, else
-it must be in numerical form and its integer value is assigned to B<*pport_num>.
+it must be in numerical form and its integer value is assigned to I<*pport_num>.
 The path component is also optional and defaults to "/".
 On success the function assigns via each non-NULL result pointer argument
 I<phost>, I<pport>, I<pport_num>, I<ppath>, and I<pssl>
 the respective url component.
-On error, B<*phost>, B<*pport>, and B<*ppath> are assigned to NULL,
+On error, I<*phost>, I<*pport>, and I<*ppath> are assigned to NULL,
 else they are guaranteed to contain non-NULL string pointers.
 It is the reponsibility of the caller to free them using L<OPENSSL_free(3)>.
-A string returned via B<*ppath> is guaranteed to begin with a C</> character.
+A string returned via I<*ppath> is guaranteed to begin with a C</> character.
 
 =head1 NOTES
 


More information about the openssl-commits mailing list