From: Harlan Stenn Date: Sat, 16 Oct 2004 10:19:50 +0000 (-0400) Subject: [Bug 348] genkeys -> keygen, and .htm -> .html X-Git-Tag: NTP_4_2_3~100^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83e58d110ecd10d02fa0d904e3840a904dc7b598;p=thirdparty%2Fntp.git [Bug 348] genkeys -> keygen, and .htm -> .html bk: 4170f5c6yrt-K0MKW6YANO91xZ6Rlw --- diff --git a/scripts/html2man.pl b/scripts/html2man.pl index bf88badaf9..bd19a39547 100755 --- a/scripts/html2man.pl +++ b/scripts/html2man.pl @@ -27,7 +27,7 @@ $MANDIR = "./man"; 'ntpdc' => ['ntpdc', 8, 'ntpd(8)'], 'ntptime' => ['ntpdtime', 8, 'ntpd(8), ntpdate(8)'], 'ntptrace' => ['ntptrace', 8, 'ntpd(8)'], - 'genkeys' => ['ntp-genkeys', 8, 'ntpd(8), ntp_auth(5)'], + 'keygen' => ['ntp-keygen', 8, 'ntpd(8), ntp_auth(5)'], 'confopt' => ['ntp.conf', 5, 'ntpd(8)'], 'authopt' => ['ntp_auth', 5, 'ntp.conf(5), ntpd(8)'], 'monopt' => ['ntp_mon', 5, 'ntp.conf(5)'], @@ -65,7 +65,7 @@ sub process { my($filename) = @_; $fileinfo = $manfiles{$filename}; - $p = HTML::TokeParser->new("$filename.htm") || die "Can't open $filename.htm: $!"; + $p = HTML::TokeParser->new("$filename.html") || die "Can't open $filename.html: $!"; open(MANOUT, ">$MANDIR/man$fileinfo->[1]/$fileinfo->[0].$fileinfo->[1]") || die "Can't open: $!";