summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libc/gen/getpwnam.317
-rw-r--r--lib/libc/gen/posix_spawn.39
-rw-r--r--lib/libc/stdio/getdelim.39
-rw-r--r--lib/libc/termios/tcgetsid.39
-rw-r--r--lib/libsndio/mio_open.39
-rw-r--r--libexec/login_yubikey/login_yubikey.811
-rw-r--r--sbin/growfs/growfs.88
-rw-r--r--share/man/man4/ehci.49
-rw-r--r--share/man/man4/ipw.415
-rw-r--r--share/man/man4/iwi.412
-rw-r--r--share/man/man4/tap.411
-rw-r--r--share/man/man4/udl.411
-rw-r--r--share/man/man4/vether.411
-rw-r--r--share/man/man4/vmx.49
-rw-r--r--share/man/man4/wpi.412
-rw-r--r--share/man/man7/tbl.78
-rw-r--r--usr.bin/ctfconv/ctfconv.111
-rw-r--r--usr.bin/ctfdump/ctfdump.111
-rw-r--r--usr.bin/deroff/deroff.110
-rw-r--r--usr.bin/fstat/fuser.19
-rw-r--r--usr.bin/rcs/rcs.123
-rw-r--r--usr.bin/sdiff/sdiff.18
-rw-r--r--usr.bin/spell/spell.110
-rw-r--r--usr.sbin/acme-client/acme-client.19
-rw-r--r--usr.sbin/ocspcheck/ocspcheck.89
-rw-r--r--usr.sbin/radiusd/radiusd.811
-rw-r--r--usr.sbin/rpc.statd/rpc.statd.811
-rw-r--r--usr.sbin/slowcgi/slowcgi.811
-rw-r--r--usr.sbin/tftp-proxy/tftp-proxy.89
29 files changed, 229 insertions, 83 deletions
diff --git a/lib/libc/gen/getpwnam.3 b/lib/libc/gen/getpwnam.3
index 21e7884ce6d..8d22c69058c 100644
--- a/lib/libc/gen/getpwnam.3
+++ b/lib/libc/gen/getpwnam.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getpwnam.3,v 1.11 2016/08/14 14:57:16 tb Exp $
+.\" $OpenBSD: getpwnam.3,v 1.12 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 1988, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -27,7 +27,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd $Mdocdate: August 14 2016 $
+.Dd $Mdocdate: October 17 2017 $
.Dt GETPWNAM 3
.Os
.Sh NAME
@@ -269,11 +269,16 @@ The
and
.Fn getpwuid
functions appeared in
-.At v7 .
-The
+.At v7 ,
.Fn setpassent
-function appeared in
-.Bx 4.3 Reno .
+in
+.Bx 4.3 Reno ,
+and
+.Fn getpwnam_shadow
+and
+.Fn getpwuid_shadow
+in
+.Ox 5.9 .
.Sh BUGS
The
.Fn getpwnam
diff --git a/lib/libc/gen/posix_spawn.3 b/lib/libc/gen/posix_spawn.3
index a22c7080391..8ba461d735b 100644
--- a/lib/libc/gen/posix_spawn.3
+++ b/lib/libc/gen/posix_spawn.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: posix_spawn.3,v 1.8 2015/02/05 02:33:09 schwarze Exp $
+.\" $OpenBSD: posix_spawn.3,v 1.9 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2012 Marc Espie <espie@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: February 5 2015 $
+.Dd $Mdocdate: October 17 2017 $
.Dt POSIX_SPAWN 3
.Os
.Sh NAME
@@ -122,5 +122,10 @@ with exit status 127.
.Sh STANDARDS
Both functions conform to
.St -p1003.1-2001 .
+.Sh HISTORY
+These functions were ported from
+.Fx
+to
+.Ox 5.2 .
.Sh AUTHORS
.An \&Ed Shouten Aq Mt ed@FreeBSD.org
diff --git a/lib/libc/stdio/getdelim.3 b/lib/libc/stdio/getdelim.3
index 8ef2dca89d5..d69ba15fc6a 100644
--- a/lib/libc/stdio/getdelim.3
+++ b/lib/libc/stdio/getdelim.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getdelim.3,v 1.5 2017/07/22 13:22:32 anton Exp $
+.\" $OpenBSD: getdelim.3,v 1.6 2017/10/17 22:47:58 schwarze Exp $
.\" $NetBSD: getdelim.3,v 1.9 2011/04/20 23:37:51 enami Exp $
.\"
.\" Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -28,7 +28,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: July 22 2017 $
+.Dd $Mdocdate: October 17 2017 $
.Dt GETDELIM 3
.Os
.Sh NAME
@@ -163,3 +163,8 @@ and
.Fn getline
functions conform to
.St -p1003.1-2008 .
+.Sh HISTORY
+These functions were ported from
+.Nx
+to
+.Ox 5.2 .
diff --git a/lib/libc/termios/tcgetsid.3 b/lib/libc/termios/tcgetsid.3
index a5206c90d6f..5d528a16c6f 100644
--- a/lib/libc/termios/tcgetsid.3
+++ b/lib/libc/termios/tcgetsid.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tcgetsid.3,v 1.1 2013/12/17 16:31:36 millert Exp $
+.\" $OpenBSD: tcgetsid.3,v 1.2 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd $Mdocdate: December 17 2013 $
+.Dd $Mdocdate: October 17 2017 $
.Dt TCGETSID 3
.Os
.Sh NAME
@@ -70,3 +70,8 @@ The
function is expected to be compliant with the
.St -p1003.1-2008
specification.
+.Sh HISTORY
+The
+.Fn tcgetsid
+function has been available since
+.Ox 5.5 .
diff --git a/lib/libsndio/mio_open.3 b/lib/libsndio/mio_open.3
index 9850be16754..c14979ee26b 100644
--- a/lib/libsndio/mio_open.3
+++ b/lib/libsndio/mio_open.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: mio_open.3,v 1.16 2016/01/07 07:41:01 ratchov Exp $
+.\" $OpenBSD: mio_open.3,v 1.17 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2007 Alexandre Ratchov <alex@caoua.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: January 7 2016 $
+.Dd $Mdocdate: October 17 2017 $
.Dt MIO_OPEN 3
.Os
.Sh NAME
@@ -247,3 +247,8 @@ may be a value between 0 and 2.
.Xr midi 4 ,
.Xr sndio 7 ,
.Xr sndiod 8
+.Sh HISTORY
+These functions first appeared in
+.Ox 4.7 .
+.Sh AUTHORS
+.An Alexandre Ratchov Aq Mt ratchov@openbsd.org
diff --git a/libexec/login_yubikey/login_yubikey.8 b/libexec/login_yubikey/login_yubikey.8
index 104ced0a81a..724b395dae2 100644
--- a/libexec/login_yubikey/login_yubikey.8
+++ b/libexec/login_yubikey/login_yubikey.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: login_yubikey.8,v 1.8 2013/08/14 08:39:31 jmc Exp $
+.\" $OpenBSD: login_yubikey.8,v 1.9 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2010 Daniel Hartmeier <daniel@benzedrine.cx>
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: August 14 2013 $
+.Dd $Mdocdate: October 17 2017 $
.Dt LOGIN_YUBIKEY 8
.Os
.Sh NAME
@@ -125,3 +125,10 @@ Directory containing user entries for YubiKey.
.Sh SEE ALSO
.Xr login 1 ,
.Xr login.conf 5
+.Sh HISTORY
+The
+.Nm
+utility first appeared in
+.Ox 5.1 .
+.Sh AUTHORS
+.An Daniel Hartmeier
diff --git a/sbin/growfs/growfs.8 b/sbin/growfs/growfs.8
index 30d2962728b..3a104024f64 100644
--- a/sbin/growfs/growfs.8
+++ b/sbin/growfs/growfs.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: growfs.8,v 1.15 2016/03/17 07:18:34 jmc Exp $
+.\" $OpenBSD: growfs.8,v 1.16 2017/10/17 22:47:58 schwarze Exp $
.\" Copyright (c) 2000 Christoph Herrmann, Thomas-Henning von Kamptz
.\" Copyright (c) 1980, 1989, 1993 The Regents of the University of California.
.\" All rights reserved.
@@ -38,7 +38,7 @@
.\" $TSHeader: src/sbin/growfs/growfs.8,v 1.3 2000/12/12 19:31:00 tomsoft Exp $
.\" $FreeBSD: src/sbin/growfs/growfs.8,v 1.24 2005/01/18 10:09:34 ru Exp $
.\"
-.Dd $Mdocdate: March 17 2016 $
+.Dd $Mdocdate: October 17 2017 $
.Dt GROWFS 8
.Os
.Sh NAME
@@ -130,7 +130,9 @@ defaults to the terminal width, or 80 columns if the output is not a terminal.
The
.Nm
utility first appeared in
-.Fx 4.4 .
+.Fx 4.4
+and has been available since
+.Ox 3.4 .
.Sh AUTHORS
.An Christoph Herrmann Aq Mt chm@FreeBSD.org
.An Thomas-Henning von Kamptz Aq Mt tomsoft@FreeBSD.org
diff --git a/share/man/man4/ehci.4 b/share/man/man4/ehci.4
index 6be8b21f0c8..ecb321b2dca 100644
--- a/share/man/man4/ehci.4
+++ b/share/man/man4/ehci.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ehci.4,v 1.12 2014/03/10 12:19:37 mpi Exp $
+.\" $OpenBSD: ehci.4,v 1.13 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: March 10 2014 $
+.Dd $Mdocdate: October 17 2017 $
.Dt EHCI 4
.Os
.Sh NAME
@@ -65,3 +65,8 @@ connector appear to connect to different USB buses.
.Xr pci 4 ,
.Xr uhci 4 ,
.Xr usb 4
+.Sh HISTORY
+The
+.Nm
+driver has been available since
+.Ox 3.6 .
diff --git a/share/man/man4/ipw.4 b/share/man/man4/ipw.4
index e8d73c3c69d..4b3c774a9fa 100644
--- a/share/man/man4/ipw.4
+++ b/share/man/man4/ipw.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ipw.4,v 1.44 2015/02/17 16:29:16 bentley Exp $
+.\" $OpenBSD: ipw.4,v 1.45 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2004
.\" Damien Bergamini <damien.bergamini@free.fr>. All rights reserved.
@@ -25,7 +25,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd $Mdocdate: February 17 2015 $
+.Dd $Mdocdate: October 17 2017 $
.Dt IPW 4
.Os
.Sh NAME
@@ -36,10 +36,8 @@
.Sh DESCRIPTION
The
.Nm
-driver provides support for the
-.Tn Intel
-PRO/Wireless 2100 Mini PCI network
-adapter.
+driver provides support for the Intel PRO/Wireless 2100 Mini PCI
+network adapter.
.Pp
These are the modes the
.Nm
@@ -145,6 +143,11 @@ The file might be missing or corrupted.
.Xr pci 4 ,
.Xr hostname.if 5 ,
.Xr ifconfig 8
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 3.7 .
.Sh AUTHORS
The
.Nm
diff --git a/share/man/man4/iwi.4 b/share/man/man4/iwi.4
index 3fd9983bf9c..1139ae3fb50 100644
--- a/share/man/man4/iwi.4
+++ b/share/man/man4/iwi.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iwi.4,v 1.50 2015/02/17 16:29:16 bentley Exp $
+.\" $OpenBSD: iwi.4,v 1.51 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2004
.\" Damien Bergamini <damien.bergamini@free.fr>. All rights reserved.
@@ -25,7 +25,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd $Mdocdate: February 17 2015 $
+.Dd $Mdocdate: October 17 2017 $
.Dt IWI 4
.Os
.Sh NAME
@@ -36,8 +36,7 @@
.Sh DESCRIPTION
The
.Nm
-driver provides support for
-.Tn Intel
+driver provides support for Intel
PRO/Wireless 2200BG/2915ABG Mini PCI and 2225BG PCI network adapters.
.Pp
These are the modes the
@@ -144,6 +143,11 @@ The file might be missing or corrupted.
.Xr pci 4 ,
.Xr hostname.if 5 ,
.Xr ifconfig 8
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 3.7 .
.Sh AUTHORS
The
.Nm
diff --git a/share/man/man4/tap.4 b/share/man/man4/tap.4
index 331462aac66..7f613f4ad8e 100644
--- a/share/man/man4/tap.4
+++ b/share/man/man4/tap.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tap.4,v 1.2 2015/10/23 16:45:51 claudio Exp $
+.\" $OpenBSD: tap.4,v 1.3 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2003 Marcus D. Watts All rights reserved.
.\"
@@ -26,7 +26,7 @@
.\" TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
.\" USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: October 23 2015 $
+.Dd $Mdocdate: October 17 2017 $
.Dt TAP 4
.Os
.Sh NAME
@@ -220,3 +220,10 @@ interface address assigned to it, such as via
.Xr hostname.if 5 ,
.Xr ifconfig 8 ,
.Xr netstart 8
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 5.9 .
+.Sh AUTHORS
+.An Claudio Jeker Aq Mt claudio@openbsd.org
diff --git a/share/man/man4/udl.4 b/share/man/man4/udl.4
index 8b292ec4de7..1a541aae7d6 100644
--- a/share/man/man4/udl.4
+++ b/share/man/man4/udl.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: udl.4,v 1.20 2012/09/18 17:11:41 jasper Exp $
+.\" $OpenBSD: udl.4,v 1.21 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: September 18 2012 $
+.Dd $Mdocdate: October 17 2017 $
.Dt UDL 4
.Os
.Sh NAME
@@ -69,3 +69,10 @@ uncompressed mode.
.Xr usb 4 ,
.Xr wscons 4 ,
.Xr wsdisplay 4
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 4.6 .
+.Sh AUTHORS
+.An Marcus Glocker Aq Mt mglocker@openbsd.org
diff --git a/share/man/man4/vether.4 b/share/man/man4/vether.4
index 04ce1aed821..f7f68cf6808 100644
--- a/share/man/man4/vether.4
+++ b/share/man/man4/vether.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vether.4,v 1.4 2014/01/20 05:07:49 schwarze Exp $
+.\" $OpenBSD: vether.4,v 1.5 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2009 Theo de Raadt <deraadt@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: January 20 2014 $
+.Dd $Mdocdate: October 17 2017 $
.Dt VETHER 4
.Os
.Sh NAME
@@ -46,6 +46,13 @@ the frame will show up there.
.Xr hostname.if 5 ,
.Xr ifconfig 8 ,
.Xr netstart 8
+.Sh HISTORY
+The
+.Nm
+interface first appeared in
+.Ox 4.7 .
+.Sh AUTHORS
+.An Theo de Raadt Aq Mt deraadt@openbsd.org
.Sh BUGS
Like
.Xr tun 4 ,
diff --git a/share/man/man4/vmx.4 b/share/man/man4/vmx.4
index 7c75c902b1d..f8d5fc2c8a8 100644
--- a/share/man/man4/vmx.4
+++ b/share/man/man4/vmx.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vmx.4,v 1.1 2013/05/31 20:18:44 reyk Exp $
+.\" $OpenBSD: vmx.4,v 1.2 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2006,2013 Reyk Floeter <reyk@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: May 31 2013 $
+.Dd $Mdocdate: October 17 2017 $
.Dt VMX 4
.Os
.Sh NAME
@@ -103,6 +103,11 @@ ethernet0.virtualDev = "vmxnet3"
.Xr vic 4 ,
.Xr hostname.if 5 ,
.Xr ifconfig 8
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 5.5 .
.Sh AUTHORS
.An -nosplit
The
diff --git a/share/man/man4/wpi.4 b/share/man/man4/wpi.4
index 656327b448f..7cc3e92d988 100644
--- a/share/man/man4/wpi.4
+++ b/share/man/man4/wpi.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: wpi.4,v 1.38 2014/02/15 20:28:19 tedu Exp $
+.\" $OpenBSD: wpi.4,v 1.39 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2006, 2007
.\" Damien Bergamini <damien.bergamini@free.fr>. All rights reserved.
@@ -25,7 +25,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd $Mdocdate: February 15 2014 $
+.Dd $Mdocdate: October 17 2017 $
.Dt WPI 4
.Os
.Sh NAME
@@ -36,8 +36,7 @@
.Sh DESCRIPTION
The
.Nm
-driver provides support for
-.Tn Intel
+driver provides support for Intel
PRO/Wireless 3945ABG Mini PCI Express network adapters.
.Pp
These are the modes the
@@ -145,6 +144,11 @@ The driver will reset the hardware.
.Xr pci 4 ,
.Xr hostname.if 5 ,
.Xr ifconfig 8
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 4.0 .
.Sh AUTHORS
The
.Nm
diff --git a/share/man/man7/tbl.7 b/share/man/man7/tbl.7
index 396ebc381d7..d8c1d0c179d 100644
--- a/share/man/man7/tbl.7
+++ b/share/man/man7/tbl.7
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tbl.7,v 1.16 2017/06/28 00:59:30 schwarze Exp $
+.\" $OpenBSD: tbl.7,v 1.17 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
.\" Copyright (c) 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -15,7 +15,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: June 28 2017 $
+.Dd $Mdocdate: October 17 2017 $
.Dt TBL 7
.Os
.Sh NAME
@@ -420,7 +420,9 @@ The GNU reimplementation of tbl, part of the groff package, was released
in 1990 by James Clark.
A standalone tbl implementation was written by Kristaps Dzonsons in
2010.
-This formed the basis of the implementation that is part of the
+This formed the basis of the implementation that first appeared in
+.Ox 4.9
+as a part of the
.Xr mandoc 1
utility.
.Sh AUTHORS
diff --git a/usr.bin/ctfconv/ctfconv.1 b/usr.bin/ctfconv/ctfconv.1
index 419fc9f7a85..7e37ba51f12 100644
--- a/usr.bin/ctfconv/ctfconv.1
+++ b/usr.bin/ctfconv/ctfconv.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ctfconv.1,v 1.7 2017/08/12 20:04:48 jmc Exp $
+.\" $OpenBSD: ctfconv.1,v 1.8 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2016 Martin Pieuchot <mpi@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: August 12 2017 $
+.Dd $Mdocdate: October 17 2017 $
.Dt CTFCONV 1
.Os
.Sh NAME
@@ -58,3 +58,10 @@ Write the raw section in
.Sh SEE ALSO
.Xr ctfdump 1 ,
.Xr ctfstrip 1
+.Sh HISTORY
+The
+.Nm
+utility first appeared in
+.Ox 6.2 .
+.Sh AUTHORS
+.An Martin Pieuchot Aq Mt mpi@openbsd.org
diff --git a/usr.bin/ctfdump/ctfdump.1 b/usr.bin/ctfdump/ctfdump.1
index ebb9bae614b..d910c5e9a9b 100644
--- a/usr.bin/ctfdump/ctfdump.1
+++ b/usr.bin/ctfdump/ctfdump.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ctfdump.1,v 1.3 2017/08/11 16:45:33 jmc Exp $
+.\" $OpenBSD: ctfdump.1,v 1.4 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2016 Martin Pieuchot <mpi@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: August 11 2017 $
+.Dd $Mdocdate: October 17 2017 $
.Dt CTFDUMP 1
.Os
.Sh NAME
@@ -52,3 +52,10 @@ Display the type section.
.Ex -std ctfdump
.Sh SEE ALSO
.Xr elf 5
+.Sh HISTORY
+The
+.Nm
+utility first appeared in
+.Ox 6.2 .
+.Sh AUTHORS
+.An Martin Pieuchot Aq Mt mpi@openbsd.org
diff --git a/usr.bin/deroff/deroff.1 b/usr.bin/deroff/deroff.1
index cb608efb38a..3cc3911a0ef 100644
--- a/usr.bin/deroff/deroff.1
+++ b/usr.bin/deroff/deroff.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: deroff.1,v 1.9 2010/10/28 20:45:19 jmc Exp $
+.\" $OpenBSD: deroff.1,v 1.10 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 1990, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -61,7 +61,7 @@
.\"
.\" @(#)deroff.1 8.1 (Berkeley) 6/6/93
.\"
-.Dd $Mdocdate: October 28 2010 $
+.Dd $Mdocdate: October 17 2017 $
.Dt DEROFF 1
.Os
.Sh NAME
@@ -152,8 +152,10 @@ Normally, the output follows the original, with the deletions mentioned above.
.Xr man 7
.Sh HISTORY
.Nm
-appeared in
-.At v7 .
+first appeared in
+.At v7
+and has been available since
+.Ox 3.1 .
.Sh BUGS
.Nm
is not a complete troff interpreter,
diff --git a/usr.bin/fstat/fuser.1 b/usr.bin/fstat/fuser.1
index ce4205a986d..db310a2f4ff 100644
--- a/usr.bin/fstat/fuser.1
+++ b/usr.bin/fstat/fuser.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: fuser.1,v 1.7 2016/01/03 19:12:37 tb Exp $
+.\" $OpenBSD: fuser.1,v 1.8 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2002 Peter Werner <peterw@ifost.org.au>
.\" All rights reserved.
@@ -23,7 +23,7 @@
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: January 3 2016 $
+.Dd $Mdocdate: October 17 2017 $
.Dt FUSER 1
.Os
.Sh NAME
@@ -145,3 +145,8 @@ specification.
The flags
.Op Fl kMNs
are extensions to that specification.
+.Sh HISTORY
+The
+.Nm
+utility has been available since
+.Ox 4.7 .
diff --git a/usr.bin/rcs/rcs.1 b/usr.bin/rcs/rcs.1
index 49acd9924c0..8c15f31fc4a 100644
--- a/usr.bin/rcs/rcs.1
+++ b/usr.bin/rcs/rcs.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: rcs.1,v 1.59 2015/09/25 15:31:24 schwarze Exp $
+.\" $OpenBSD: rcs.1,v 1.60 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2005 Jean-Francois Brousseau <jfb@openbsd.org>
.\" Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org>
@@ -24,7 +24,7 @@
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: September 25 2015 $
+.Dd $Mdocdate: October 17 2017 $
.Dt RCS 1
.Os
.Sh NAME
@@ -464,12 +464,21 @@ have no effect and are provided
for compatibility only.
.Sh HISTORY
The OpenRCS project is a BSD-licensed rewrite of the original
-Revision Control System.
-OpenRCS is written by Jean-Francois Brousseau, Joris Vink,
-Niall O'Higgins, and Xavier Santolaria.
+Revision Control System and first appeared in
+.Ox 4.0 .
+.Sh AUTHORS
+.An -nosplit
+OpenRCS was written by
+.An Jean-Francois Brousseau ,
+.An Joris Vink ,
+.An Niall O'Higgins ,
+and
+.An Xavier Santolaria .
.Pp
-The original RCS code was written in large parts by Walter F. Tichy
-and Paul Eggert.
+The original RCS code was written in large parts by
+.An Walter F. Tichy
+and
+.An Paul Eggert .
.Sh CAVEATS
For historical reasons,
the RCS tools do not permit whitespace between options and their arguments.
diff --git a/usr.bin/sdiff/sdiff.1 b/usr.bin/sdiff/sdiff.1
index b301b4cf77c..a504c05a28e 100644
--- a/usr.bin/sdiff/sdiff.1
+++ b/usr.bin/sdiff/sdiff.1
@@ -1,9 +1,9 @@
-.\" $OpenBSD: sdiff.1,v 1.18 2015/02/28 21:51:56 bentley Exp $
+.\" $OpenBSD: sdiff.1,v 1.19 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Written by Raymond Lai <ray@cyth.net>.
.\" Public domain.
.\"
-.Dd $Mdocdate: February 28 2015 $
+.Dd $Mdocdate: October 17 2017 $
.Dt SDIFF 1
.Os
.Sh NAME
@@ -162,6 +162,10 @@ An error occurred.
.Xr diff3 1 ,
.Xr vi 1 ,
.Xr re_format 7
+.Sh HISTORY
+.Nm
+has been available since
+.Ox 3.9 .
.Sh AUTHORS
.Nm
was written from scratch for the public domain by
diff --git a/usr.bin/spell/spell.1 b/usr.bin/spell/spell.1
index 3dcc6af81d6..187cc59311b 100644
--- a/usr.bin/spell/spell.1
+++ b/usr.bin/spell/spell.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: spell.1,v 1.13 2016/12/28 22:47:11 schwarze Exp $
+.\" $OpenBSD: spell.1,v 1.14 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (C) 1985, 1993, 1994
.\" The Regents of the University of California. All rights reserved.
@@ -61,7 +61,7 @@
.\"
.\" @(#)spell.1 8.2 (Berkeley) 4/18/94
.\"
-.Dd $Mdocdate: December 28 2016 $
+.Dd $Mdocdate: October 17 2017 $
.Dt SPELL 1
.Os
.Sh NAME
@@ -222,8 +222,10 @@ Binary executed by the shell script
.Sh HISTORY
The
.Nm spell
-command appeared in
-.At v6 .
+command first appeared in
+.At v6
+and has been available since
+.Ox 3.1 .
.Pp
Unlike historic versions, the
.Ox
diff --git a/usr.sbin/acme-client/acme-client.1 b/usr.sbin/acme-client/acme-client.1
index e50e3332d9b..e99c2b51154 100644
--- a/usr.sbin/acme-client/acme-client.1
+++ b/usr.sbin/acme-client/acme-client.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: acme-client.1,v 1.22 2017/03/22 11:14:14 benno Exp $
+.\" $OpenBSD: acme-client.1,v 1.23 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: March 22 2017 $
+.Dd $Mdocdate: October 17 2017 $
.Dt ACME-CLIENT 1
.Os
.Sh NAME
@@ -122,6 +122,11 @@ job can renew the certificates:
.%U https://tools.ietf.org/html/draft-ietf-acme-acme-03
.%T Automatic Certificate Management Environment (ACME)
.Re
+.Sh HISTORY
+The
+.Nm
+utility first appeared in
+.Ox 6.1 .
.Sh AUTHORS
The
.Nm
diff --git a/usr.sbin/ocspcheck/ocspcheck.8 b/usr.sbin/ocspcheck/ocspcheck.8
index 21869205cac..dabac38a65b 100644
--- a/usr.sbin/ocspcheck/ocspcheck.8
+++ b/usr.sbin/ocspcheck/ocspcheck.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ocspcheck.8,v 1.6 2017/01/26 22:59:55 jmc Exp $
+.\" $OpenBSD: ocspcheck.8,v 1.7 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2017 Bob Beck <beck@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: January 26 2017 $
+.Dd $Mdocdate: October 17 2017 $
.Dt OCSPCHECK 8
.Os
.Sh NAME
@@ -79,6 +79,11 @@ exits >0 if an error occurs or the OCSP response fails to validate.
.Xr tls_config_set_ocsp_staple_file 3 ,
.Xr tls_config_set_ocsp_staple_mem 3 ,
.Xr httpd 8
+.Sh HISTORY
+The
+.Nm
+utility first appeared in
+.Ox 6.1 .
.Sh AUTHORS
.Nm
was written by
diff --git a/usr.sbin/radiusd/radiusd.8 b/usr.sbin/radiusd/radiusd.8
index 66e86d41977..6f49f730423 100644
--- a/usr.sbin/radiusd/radiusd.8
+++ b/usr.sbin/radiusd/radiusd.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: radiusd.8,v 1.7 2016/09/20 09:16:37 jmc Exp $
+.\" $OpenBSD: radiusd.8,v 1.8 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2013 Internet Initiative Japan Inc.
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: September 20 2016 $
+.Dd $Mdocdate: October 17 2017 $
.Dt RADIUSD 8
.Os
.Sh NAME
@@ -64,3 +64,10 @@ Default configuration file.
.%T "Remote Authentication Dial In User Service (RADIUS)"
.%D June 2000
.Re
+.Sh HISTORY
+The
+.Nm
+daemon first appeared in
+.Ox 5.8 .
+.Sh AUTHORS
+.An YASUOKA Masahiko Aq Mt yasuoka@openbsd.org
diff --git a/usr.sbin/rpc.statd/rpc.statd.8 b/usr.sbin/rpc.statd/rpc.statd.8
index 4f237e6d761..33bc69f7066 100644
--- a/usr.sbin/rpc.statd/rpc.statd.8
+++ b/usr.sbin/rpc.statd/rpc.statd.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: rpc.statd.8,v 1.2 2008/06/15 20:42:42 jmc Exp $
+.\" $OpenBSD: rpc.statd.8,v 1.3 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 1995 A.R.Gordon, andrew.gordon@net-tel.co.uk
.\" All rights reserved.
@@ -32,7 +32,7 @@
.\" SUCH DAMAGE.
.\"
.\"
-.Dd $Mdocdate: June 15 2008 $
+.Dd $Mdocdate: October 17 2017 $
.Dt RPC.STATD 8
.Os
.Sh NAME
@@ -99,8 +99,11 @@ ISBN 1 872630 66 9.
.Sh HISTORY
A version of
.Nm
-appeared in
-.Tn SunOS 4 .
+appeared in SunOS 4.
+The current implementation was ported from
+.Nx
+to
+.Ox 4.4 .
.Sh BUGS
There is no means for the daemon to tell when a monitored host has
disappeared permanently (e.g. catastrophic hardware failure), as opposed
diff --git a/usr.sbin/slowcgi/slowcgi.8 b/usr.sbin/slowcgi/slowcgi.8
index d3ab4030bed..52bded7eee6 100644
--- a/usr.sbin/slowcgi/slowcgi.8
+++ b/usr.sbin/slowcgi/slowcgi.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: slowcgi.8,v 1.11 2014/08/28 08:09:39 jmc Exp $
+.\" $OpenBSD: slowcgi.8,v 1.12 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2013 Florian Obser <florian@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: August 28 2014 $
+.Dd $Mdocdate: October 17 2017 $
.Dt SLOWCGI 8
.Os
.Sh NAME
@@ -95,6 +95,13 @@ instead of default user www.
.%R RFC 3875
.%T The Common Gateway Interface (CGI) Version 1.1
.Re
+.Sh HISTORY
+The
+.Nm
+server first appeared in
+.Ox 5.4 .
+.Sh AUTHORS
+.An Florian Obser Aq Mt florian@openbsd.org
.Sh BUGS
.Nm
only implements the parts of the FastCGI standard needed to execute
diff --git a/usr.sbin/tftp-proxy/tftp-proxy.8 b/usr.sbin/tftp-proxy/tftp-proxy.8
index 9541d4eecfb..bdde8e659e4 100644
--- a/usr.sbin/tftp-proxy/tftp-proxy.8
+++ b/usr.sbin/tftp-proxy/tftp-proxy.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tftp-proxy.8,v 1.7 2016/09/19 12:52:14 jmc Exp $
+.\" $OpenBSD: tftp-proxy.8,v 1.8 2017/10/17 22:47:58 schwarze Exp $
.\"
.\" Copyright (c) 2005 joshua stein <jcs@openbsd.org>
.\"
@@ -25,7 +25,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: September 19 2016 $
+.Dd $Mdocdate: October 17 2017 $
.Dt TFTP-PROXY 8
.Os
.Sh NAME
@@ -136,3 +136,8 @@ pass out quick on $ext_if inet proto udp from $lan to port tftp \e
.Xr ftp-proxy 8 ,
.Xr syslogd 8 ,
.Xr tftpd 8
+.Sh HISTORY
+The current stand-alone implementation first appeared in
+.Ox 5.3 .
+.Sh AUTHORS
+.An David Gwynne <dlg@openbsd.org>