Fix some doc nits

Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2909)
This commit is contained in:
Rich Salz 2017-03-11 12:48:32 -05:00
parent 8a585601fe
commit d4ea9659d9
4 changed files with 14 additions and 4 deletions

View file

@ -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,

View file

@ -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

View file

@ -1,8 +1,13 @@
=pod
=head1 NAMES
=head1 NAME
UI_STRING, UI_string_types,
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

View file

@ -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_]+)\(/ ) {