summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-05-30 15:30:17 +0000
committerRichard Levitte <levitte@openssl.org>2002-05-30 15:30:17 +0000
commit8b57fb12080557bc277b46761584147510ca398c (patch)
treea7cc1f691827e49ff480d353cc40738998f63d67 /util
parent2962243d19ec76c66fee5a551a6d26946716c364 (diff)
pod2man.pl would only remove the first LF from the name.
Diffstat (limited to 'util')
-rwxr-xr-xutil/pod2man.pl4
1 files changed, 2 insertions, 2 deletions
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;
}
}