summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2017-07-03 21:28:48 +0000
committerwiz <wiz@NetBSD.org>2017-07-03 21:28:48 +0000
commit56b14ee00121a3a960d2fbe103c85e147ac57103 (patch)
tree05478e811140b3d30b452dcff8e4df8bdab6e3f8 /libexec
parent7c0084bd3e3114326ae5e7336142439f1d2a10e1 (diff)
Remove workaround for ancient HTML generation code.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/ftpd/ftpd.84
-rw-r--r--libexec/httpd/bozohttpd.84
-rw-r--r--libexec/ld.elf_so/ld.elf_so.18
-rw-r--r--libexec/mail.local/mail.local.86
-rw-r--r--libexec/rexecd/rexecd.84
-rw-r--r--libexec/rshd/rshd.84
6 files changed, 15 insertions, 15 deletions
diff --git a/libexec/ftpd/ftpd.8 b/libexec/ftpd/ftpd.8
index c62d3d391f8..4c7ce592d2d 100644
--- a/libexec/ftpd/ftpd.8
+++ b/libexec/ftpd/ftpd.8
@@ -1,4 +1,4 @@
-.\" $NetBSD: ftpd.8,v 1.85 2009/05/01 10:53:27 wiz Exp $
+.\" $NetBSD: ftpd.8,v 1.86 2017/07/03 21:35:48 wiz Exp $
.\"
.\" Copyright (c) 1997-2008 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -278,7 +278,7 @@ style
.Pa xferlog
file suitable for input into a third-party log analysis tool with a command
similar to:
-.Dl "sed -ne 's/^.*xferlog: //p' /var/log/xferlog \*[Gt] wuxferlog"
+.Dl "sed -ne 's/^.*xferlog: //p' /var/log/xferlog > wuxferlog"
.El
.Pp
The file
diff --git a/libexec/httpd/bozohttpd.8 b/libexec/httpd/bozohttpd.8
index f4b267189ff..fc7d58fdb59 100644
--- a/libexec/httpd/bozohttpd.8
+++ b/libexec/httpd/bozohttpd.8
@@ -1,4 +1,4 @@
-.\" $NetBSD: bozohttpd.8,v 1.65 2017/01/31 14:36:09 mrg Exp $
+.\" $NetBSD: bozohttpd.8,v 1.66 2017/07/03 21:35:48 wiz Exp $
.\"
.\" $eterna: bozohttpd.8,v 1.101 2011/11/18 01:25:11 mrg Exp $
.\"
@@ -105,7 +105,7 @@ The
directory is expected to contain the CGI programs to be used.
.Nm
looks for URL's in the form of
-.Em /cgi-bin/\*[Lt]scriptname\*[Gt]
+.Em /cgi-bin/<scriptname>
where
.Aq scriptname
is a valid CGI program in the
diff --git a/libexec/ld.elf_so/ld.elf_so.1 b/libexec/ld.elf_so/ld.elf_so.1
index 14d88837c51..b2373f30438 100644
--- a/libexec/ld.elf_so/ld.elf_so.1
+++ b/libexec/ld.elf_so/ld.elf_so.1
@@ -1,4 +1,4 @@
-.\" $NetBSD: ld.elf_so.1,v 1.16 2015/07/03 10:19:29 joerg Exp $
+.\" $NetBSD: ld.elf_so.1,v 1.17 2017/07/03 21:35:48 wiz Exp $
.\"
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -129,14 +129,14 @@ and
are recognized.
.Pp
The filename string can be considered free form, however, it will almost
-always take the form lib\*[Lt]name\*[Gt].so.\*[Lt]number\*[Gt],
+always take the form lib<name>.so.<number>,
where name specifies the
.Sq library
name and number is conceptually the library's major version number.
.Pp
-This name and another of the form lib\*[Lt]name\*[Gt].so are normally
+This name and another of the form lib<name>.so are normally
symbolic links to the real shared object which has a filename of the form
-lib\*[Lt]name\*[Gt].so.\*[Lt]major\*[Gt].\*[Lt]minor\*[Gt][.\*[Lt]teeny\*[Gt]].
+lib<name>.so.<major>.<minor>[.<teeny>].
This naming convention allows a versioning scheme similar to
.Xr a.out 5 .
.Ss Relocation
diff --git a/libexec/mail.local/mail.local.8 b/libexec/mail.local/mail.local.8
index 2fb9c3f0c21..0f665455f04 100644
--- a/libexec/mail.local/mail.local.8
+++ b/libexec/mail.local/mail.local.8
@@ -1,4 +1,4 @@
-.\" $NetBSD: mail.local.8,v 1.12 2013/07/09 09:41:30 njoly Exp $
+.\" $NetBSD: mail.local.8,v 1.13 2017/07/03 21:35:49 wiz Exp $
.\"
.\" Copyright (c) 1990 The Regents of the University of California.
.\" All rights reserved.
@@ -65,7 +65,7 @@ line followed by a line beginning with the string ``From ''.
A line containing the string ``From '', the sender's name and a time stamp
is prepended to each delivered mail message.
A blank line is appended to each message.
-A greater-than character (``\*[Gt]'') is prepended to any line in the message
+A greater-than character (``>'') is prepended to any line in the message
which could be mistaken for a ``From '' delimiter line.
.Pp
If the
@@ -83,7 +83,7 @@ the biff server is notified of delivered mail.
.Pp
The
.Nm
-utility exits 0 on success, and \*[Gt]0 if an error occurs.
+utility exits 0 on success, and >0 if an error occurs.
.Sh ENVIRONMENT
.Bl -tag -width indent
.It Ev TZ
diff --git a/libexec/rexecd/rexecd.8 b/libexec/rexecd/rexecd.8
index be69a494cf2..8adffeda01b 100644
--- a/libexec/rexecd/rexecd.8
+++ b/libexec/rexecd/rexecd.8
@@ -1,4 +1,4 @@
-.\" $NetBSD: rexecd.8,v 1.12 2009/04/09 04:02:32 joerg Exp $
+.\" $NetBSD: rexecd.8,v 1.13 2017/07/03 21:35:49 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -119,7 +119,7 @@ to the home directory failed.
A
.Xr fork 2
by the server failed.
-.It Sy \*[Lt]shellname\*[Gt]: ...
+.It Sy <shellname>: ...
The user's login shell could not be started.
This message is returned
on the connection associated with the
diff --git a/libexec/rshd/rshd.8 b/libexec/rshd/rshd.8
index 65158cef65d..b43b21c5cd6 100644
--- a/libexec/rshd/rshd.8
+++ b/libexec/rshd/rshd.8
@@ -1,4 +1,4 @@
-.\" $NetBSD: rshd.8,v 1.18 2005/03/09 16:42:49 wiz Exp $
+.\" $NetBSD: rshd.8,v 1.19 2017/07/03 21:35:49 wiz Exp $
.\"
.\" Copyright (c) 1983, 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -191,7 +191,7 @@ wasn't created.
A
.Xr fork 2
by the server failed.
-.It Sy \*[Lt]shellname\*[Gt]: ...
+.It Sy <shellname>: ...
The user's login shell could not be started.
This message is returned on the connection associated with the
.Em stderr ,