[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Thu Oct 26 10:48:42 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  2e6d51d7674eacfd1941e910a56c6897443a9c19 (commit)
      from  b8dc5f4d0200b55c67e3d77340ee558cac336d4e (commit)


- Log -----------------------------------------------------------------
commit 2e6d51d7674eacfd1941e910a56c6897443a9c19
Author: Paul Yang <yang.yang at baishancloud.com>
Date:   Tue Oct 24 01:35:31 2017 +0800

    Fix doc-nits in doc/man3/DEFINE_STACK_OF.pod
    
    <compar> to <compare> to match the var name in function prototype
    
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    Reviewed-by: Andy Polyakov <appro at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/4559)
    
    (cherry picked from commit d9c989fe3f137580ee627c91e01245e78b0b41ff)

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

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

diff --git a/doc/crypto/DEFINE_STACK_OF.pod b/doc/crypto/DEFINE_STACK_OF.pod
index fbd43f9..f655f84 100644
--- a/doc/crypto/DEFINE_STACK_OF.pod
+++ b/doc/crypto/DEFINE_STACK_OF.pod
@@ -94,12 +94,12 @@ B<NULL>.
 sk_TYPE_value() returns element B<idx> in B<sk>, where B<idx> starts at
 zero. If B<idx> is out of range then B<NULL> is returned.
 
-sk_TYPE_new() allocates a new empty stack using comparison function B<compar>.
-If B<compar> is B<NULL> then no comparison function is used.
+sk_TYPE_new() allocates a new empty stack using comparison function B<compare>.
+If B<compare> is B<NULL> then no comparison function is used.
 
 sk_TYPE_new_null() allocates a new empty stack with no comparison function.
 
-sk_TYPE_set_cmp_func() sets the comparison function of B<sk> to B<compar>.
+sk_TYPE_set_cmp_func() sets the comparison function of B<sk> to B<compare>.
 The previous comparison function is returned or B<NULL> if there was
 no previous comparison function.
 


More information about the openssl-commits mailing list