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

Rich Salz rsalz at openssl.org
Sun Mar 12 13:01:05 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  8c7d18c635ef5ed087c6614b1e6472794af339a3 (commit)
      from  c2f9144e52a3168a6faca83839367b0adfedfc50 (commit)


- Log -----------------------------------------------------------------
commit 8c7d18c635ef5ed087c6614b1e6472794af339a3
Author: Rich Salz <rsalz at openssl.org>
Date:   Sat Mar 11 12:48:32 2017 -0500

    Fix some doc nits
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/2909)
    (cherry picked from commit d4ea9659d9bc6577627b085d7cb6cdc7b94fee20)

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

Summary of changes:
 doc/crypto/BIO_ADDRINFO.pod       |  1 +
 doc/crypto/BIO_parse_hostserv.pod |  5 +++--
 doc/crypto/UI_STRING.pod          | 11 ++++++++---
 util/find-doc-nits                |  3 +++
 4 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/doc/crypto/BIO_ADDRINFO.pod b/doc/crypto/BIO_ADDRINFO.pod
index 9ebf99a..7811da4 100644
--- a/doc/crypto/BIO_ADDRINFO.pod
+++ b/doc/crypto/BIO_ADDRINFO.pod
@@ -2,6 +2,7 @@
 
 =head1 NAME
 
+BIO_lookup_type,
 BIO_ADDRINFO, BIO_ADDRINFO_next, BIO_ADDRINFO_free,
 BIO_ADDRINFO_family, BIO_ADDRINFO_socktype, BIO_ADDRINFO_protocol,
 BIO_ADDRINFO_address,
diff --git a/doc/crypto/BIO_parse_hostserv.pod b/doc/crypto/BIO_parse_hostserv.pod
index 4ee4f46..426e4de 100644
--- a/doc/crypto/BIO_parse_hostserv.pod
+++ b/doc/crypto/BIO_parse_hostserv.pod
@@ -2,8 +2,9 @@
 
 =head1 NAME
 
-BIO_parse_hostserv - utility routines to parse a standard host and service
-string
+BIO_hostserv_priorities,
+BIO_parse_hostserv
+- utility routines to parse a standard host and service string
 
 =head1 SYNOPSIS
 
diff --git a/doc/crypto/UI_STRING.pod b/doc/crypto/UI_STRING.pod
index b0f9371..abd2cfc 100644
--- a/doc/crypto/UI_STRING.pod
+++ b/doc/crypto/UI_STRING.pod
@@ -1,8 +1,13 @@
 =pod
 
-=head1 NAMES
-
-UI_STRING, UI_string_types,
+=head1 NAME
+
+UI_STRING, UI_string_types, UI_get_string_type,
+UI_get_input_flags, UI_get0_output_string,
+UI_get0_action_string, UI_get0_result_string,
+UI_get0_test_string, UI_get_result_minsize,
+UI_get_result_maxsize, UI_set_result
+- User interface string parsing
 
 =head1 SYNOPSIS
 
diff --git a/util/find-doc-nits b/util/find-doc-nits
index 0b85515..537e132 100755
--- a/util/find-doc-nits
+++ b/util/find-doc-nits
@@ -96,6 +96,9 @@ sub name_synopsis()
         } elsif ( $line =~ /typedef.* (\S+);/ ) {
             # a simple typedef: typedef ... NAME;
             $sym = $1;
+        } elsif ( $line =~ /enum (\S*) {/ ) {
+            # an enumeration: enum ... {
+            $sym = $1;
         } elsif ( $line =~ /#define ([A-Za-z0-9_]+)/ ) {
             $sym = $1;
         } elsif ( $line =~ /([A-Za-z0-9_]+)\(/ ) {


More information about the openssl-commits mailing list