[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Tue Nov 22 23:35:24 UTC 2016


The branch master has been updated
       via  19cb71ef6e414759d737918bab10be2cc1d8bd99 (commit)
      from  55ab86e4c202e202a2b9200291d038878a727815 (commit)


- Log -----------------------------------------------------------------
commit 19cb71ef6e414759d737918bab10be2cc1d8bd99
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Nov 22 11:22:16 2016 +0100

    Clarify what X509_NAME_online does with the given buffer and size
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/1980)

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

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

diff --git a/doc/man3/X509_NAME_print_ex.pod b/doc/man3/X509_NAME_print_ex.pod
index eba6276..3e9caa8 100644
--- a/doc/man3/X509_NAME_print_ex.pod
+++ b/doc/man3/X509_NAME_print_ex.pod
@@ -23,9 +23,11 @@ can be extensively customised by use of the B<flags> parameter.
 X509_NAME_print_ex_fp() is identical to X509_NAME_print_ex() except the output is
 written to FILE pointer B<fp>.
 
-X509_NAME_oneline() prints an ASCII version of B<a> to B<buf>. At most B<size>
-bytes will be written. If B<buf> is B<NULL> then a buffer is dynamically allocated
-and returned, otherwise B<buf> is returned.
+X509_NAME_oneline() prints an ASCII version of B<a> to B<buf>.
+If B<buf> is B<NULL> then a buffer is dynamically allocated and returned, and
+B<size> is ignored.
+Otherwise, at most B<size> bytes will be written, including the ending '\0',
+and B<buf> is returned.
 
 X509_NAME_print() prints out B<name> to B<bp> indenting each line by B<obase>
 characters. Multiple lines are used if the output (including indent) exceeds


More information about the openssl-commits mailing list