mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
pod2man.pl would only remove the first LF from the name.
This commit is contained in:
parent
2962243d19
commit
8b57fb1208
@ -416,8 +416,8 @@ if ($name ne 'something') {
|
||||
warn "$0: Improper man page - malformed NAME header in paragraph $. of $ARGV[0]\n"
|
||||
}
|
||||
else {
|
||||
$n[0] =~ s/\n/ /;
|
||||
$n[1] =~ s/\n/ /;
|
||||
$n[0] =~ s/\n/ /g;
|
||||
$n[1] =~ s/\n/ /g;
|
||||
%namedesc = @n;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user