From: Richard Levitte Date: Thu, 30 May 2002 15:30:17 +0000 (+0000) Subject: pod2man.pl would only remove the first LF from the name. X-Git-Tag: OpenSSL_0_9_6e~26^2~121 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=8b57fb12080557bc277b46761584147510ca398c pod2man.pl would only remove the first LF from the name. --- diff --git a/util/pod2man.pl b/util/pod2man.pl index c6b64add60..657e4e264e 100755 --- a/util/pod2man.pl +++ b/util/pod2man.pl @@ -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; } }