From: Bodo Möller Date: Thu, 8 Mar 2001 21:53:01 +0000 (+0000) Subject: Avoid problems with multi-line NAME sections. X-Git-Tag: OpenSSL_0_9_6a-beta1~12 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fac683684bc568bd03466d9e99b3787d13cedf0d;p=oweals%2Fopenssl.git Avoid problems with multi-line NAME sections. --- diff --git a/util/pod2man.pl b/util/pod2man.pl index f5ec0767ed..c6b64add60 100755 --- a/util/pod2man.pl +++ b/util/pod2man.pl @@ -416,6 +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/ /; %namedesc = @n; } }