Various missing-link fixes
Also, turn missing L<foo(3)> into foo(3) Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10104)
This commit is contained in:
parent
dc7aa02900
commit
d2b194d78f
5 changed files with 8 additions and 9 deletions
|
@ -727,14 +727,13 @@ sub collectnames {
|
|||
map { s/^\s+//g; s/\s+$//g; $_ } # Trim prefix and suffix blanks
|
||||
split(/,/, $tmp);
|
||||
unless ( grep { $simplename eq $_ } @names ) {
|
||||
err($id, "missing $simplename");
|
||||
err($id, "$simplename not in NAME section");
|
||||
push @names, $simplename;
|
||||
}
|
||||
foreach my $name (@names) {
|
||||
next if $name eq "";
|
||||
if ( $name =~ /\s/ ) {
|
||||
err($id, "'$name' contains white space")
|
||||
}
|
||||
err($id, "'$name' contains white space")
|
||||
if $name =~ /\s/;
|
||||
my $name_sec = "$name($section)";
|
||||
if ( !exists $name_map{$name_sec} ) {
|
||||
$name_map{$name_sec} = $filename;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue