Module Name: src Committed By: wiz Date: Fri Sep 19 16:02:59 UTC 2014
Modified Files: src/games/hals_end: hals_end.6 src/lib/libc/stdlib: qsort.3 src/lib/libc/sys: getpgrp.2 setpgid.2 src/lib/libm/man: acosh.3 asinh.3 atanh.3 src/share/man/man5: ar.5 hosts.equiv.5 netgroup.5 src/usr.bin/bthset: bthset.1 src/usr.bin/btkey: btkey.1 src/usr.bin/btpin: btpin.1 src/usr.bin/su: su.1 src/usr.bin/vgrind: vgrindefs.5 src/usr.bin/wc: wc.1 src/usr.bin/whereis: whereis.1 src/usr.sbin/lptctl: lptctl.8 src/usr.sbin/mailwrapper: mailwrapper.8 src/usr.sbin/sa: sa.8 src/usr.sbin/user: groupinfo.8 user.8 useradd.8 userdel.8 usermod.8 Log Message: Sort sections. From Henning Petersen in PR 49222. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/games/hals_end/hals_end.6 cvs rdiff -u -r1.13 -r1.14 src/lib/libc/stdlib/qsort.3 cvs rdiff -u -r1.23 -r1.24 src/lib/libc/sys/getpgrp.2 cvs rdiff -u -r1.22 -r1.23 src/lib/libc/sys/setpgid.2 cvs rdiff -u -r1.16 -r1.17 src/lib/libm/man/acosh.3 src/lib/libm/man/asinh.3 \ src/lib/libm/man/atanh.3 cvs rdiff -u -r1.7 -r1.8 src/share/man/man5/ar.5 cvs rdiff -u -r1.8 -r1.9 src/share/man/man5/hosts.equiv.5 \ src/share/man/man5/netgroup.5 cvs rdiff -u -r1.4 -r1.5 src/usr.bin/bthset/bthset.1 cvs rdiff -u -r1.4 -r1.5 src/usr.bin/btkey/btkey.1 cvs rdiff -u -r1.9 -r1.10 src/usr.bin/btpin/btpin.1 cvs rdiff -u -r1.50 -r1.51 src/usr.bin/su/su.1 cvs rdiff -u -r1.11 -r1.12 src/usr.bin/vgrind/vgrindefs.5 cvs rdiff -u -r1.15 -r1.16 src/usr.bin/wc/wc.1 cvs rdiff -u -r1.14 -r1.15 src/usr.bin/whereis/whereis.1 cvs rdiff -u -r1.10 -r1.11 src/usr.sbin/lptctl/lptctl.8 cvs rdiff -u -r1.14 -r1.15 src/usr.sbin/mailwrapper/mailwrapper.8 cvs rdiff -u -r1.16 -r1.17 src/usr.sbin/sa/sa.8 cvs rdiff -u -r1.12 -r1.13 src/usr.sbin/user/groupinfo.8 cvs rdiff -u -r1.23 -r1.24 src/usr.sbin/user/user.8 cvs rdiff -u -r1.42 -r1.43 src/usr.sbin/user/useradd.8 cvs rdiff -u -r1.32 -r1.33 src/usr.sbin/user/userdel.8 \ src/usr.sbin/user/usermod.8 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/games/hals_end/hals_end.6 diff -u src/games/hals_end/hals_end.6:1.1 src/games/hals_end/hals_end.6:1.2 --- src/games/hals_end/hals_end.6:1.1 Tue Nov 12 17:46:21 2013 +++ src/games/hals_end/hals_end.6 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: hals_end.6,v 1.1 2013/11/12 17:46:21 mbalmer Exp $ +.\" $NetBSD: hals_end.6,v 1.2 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 2003 - 2013 Marc Balmer <m...@msys.ch>. .\" All rights reserved. @@ -46,11 +46,6 @@ Fast forward. Every movie can be played back with fast forward. This option will double the speed of the output. .El -.Sh BUGS -Unlike the real HAL, this program can be repeately run. -There should be functionality in the program to destroy itself after one run. -The rationale for not doing this right now is that the movie itself can be -watched several times as well. .Sh HISTORY .Nm first appeared in the book "Total Interaction" (ISBN 978-3-7643-7076-3) where @@ -64,3 +59,8 @@ this article. .Nm was written by .An Marc Balmer Aq Mt m...@msys.ch . +.Sh BUGS +Unlike the real HAL, this program can be repeately run. +There should be functionality in the program to destroy itself after one run. +The rationale for not doing this right now is that the movie itself can be +watched several times as well. Index: src/lib/libc/stdlib/qsort.3 diff -u src/lib/libc/stdlib/qsort.3:1.13 src/lib/libc/stdlib/qsort.3:1.14 --- src/lib/libc/stdlib/qsort.3:1.13 Thu Aug 7 16:43:42 2003 +++ src/lib/libc/stdlib/qsort.3 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: qsort.3,v 1.13 2003/08/07 16:43:42 agc Exp $ +.\" $NetBSD: qsort.3,v 1.14 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -161,6 +161,12 @@ return 0. Otherwise, they return \-1 and the global variable .Va errno is set to indicate the error. +.Sh COMPATIBILITY +Previous versions of +.Fn qsort +did not permit the comparison routine itself to call +.Fn qsort . +This is no longer true. .Sh ERRORS The .Fn heapsort @@ -182,12 +188,6 @@ or .Fn mergesort were unable to allocate memory. .El -.Sh COMPATIBILITY -Previous versions of -.Fn qsort -did not permit the comparison routine itself to call -.Fn qsort . -This is no longer true. .Sh SEE ALSO .Xr sort 1 , .Xr radixsort 3 Index: src/lib/libc/sys/getpgrp.2 diff -u src/lib/libc/sys/getpgrp.2:1.23 src/lib/libc/sys/getpgrp.2:1.24 --- src/lib/libc/sys/getpgrp.2:1.23 Mon Mar 23 14:11:27 2009 +++ src/lib/libc/sys/getpgrp.2 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: getpgrp.2,v 1.23 2009/03/23 14:11:27 joerg Exp $ +.\" $NetBSD: getpgrp.2,v 1.24 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -69,35 +69,6 @@ and .Fn tcsetpgrp calls are used to get/set the process group of the control terminal. -.Sh ERRORS -.Fn getpgrp -always succeeds, however -.Fn getpgid -will succeed unless: -.Bl -tag -width Er -.It Bq Er ESRCH -if there is no process with a process ID equal to -.Fa pid . -.El -.Sh SEE ALSO -.Xr setpgid 2 , -.Xr termios 4 -.Sh STANDARDS -The -.Fn getpgrp -function conforms to -.St -p1003.1-88 . -.Sh HISTORY -The -.Fn getpgrp -function call appeared in -.Bx 4.0 . -The -.Fn getpgid -function call is derived from its usage in -.At V.4 , -and first appeared in -.Nx 1.3 . .Sh COMPATIBILITY This version of .Fn getpgrp @@ -127,3 +98,32 @@ has been omitted from POSIX.1. The old functionality is available from the .Fn getpgid function. +.Sh ERRORS +.Fn getpgrp +always succeeds, however +.Fn getpgid +will succeed unless: +.Bl -tag -width Er +.It Bq Er ESRCH +if there is no process with a process ID equal to +.Fa pid . +.El +.Sh SEE ALSO +.Xr setpgid 2 , +.Xr termios 4 +.Sh STANDARDS +The +.Fn getpgrp +function conforms to +.St -p1003.1-88 . +.Sh HISTORY +The +.Fn getpgrp +function call appeared in +.Bx 4.0 . +The +.Fn getpgid +function call is derived from its usage in +.At V.4 , +and first appeared in +.Nx 1.3 . Index: src/lib/libc/sys/setpgid.2 diff -u src/lib/libc/sys/setpgid.2:1.22 src/lib/libc/sys/setpgid.2:1.23 --- src/lib/libc/sys/setpgid.2:1.22 Thu May 13 10:20:58 2004 +++ src/lib/libc/sys/setpgid.2 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: setpgid.2,v 1.22 2004/05/13 10:20:58 wiz Exp $ +.\" $NetBSD: setpgid.2,v 1.23 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -68,6 +68,13 @@ returns 0 when the operation was success If the request failed, \-1 is returned and the global variable .Va errno indicates the reason. +.Sh COMPATIBILITY +.Fn setpgrp +is identical to +.Fn setpgid , +and is retained for calling convention compatibility with historical +versions of +.Bx . .Sh ERRORS .Fn setpgid will fail and the process group will not be altered if: @@ -98,10 +105,3 @@ The .Fn setpgid function conforms to .St -p1003.1-90 . -.Sh COMPATIBILITY -.Fn setpgrp -is identical to -.Fn setpgid , -and is retained for calling convention compatibility with historical -versions of -.Bx . Index: src/lib/libm/man/acosh.3 diff -u src/lib/libm/man/acosh.3:1.16 src/lib/libm/man/acosh.3:1.17 --- src/lib/libm/man/acosh.3:1.16 Tue Jan 29 02:54:30 2013 +++ src/lib/libm/man/acosh.3 Fri Sep 19 16:02:58 2014 @@ -26,7 +26,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)acosh.3 5.2 (Berkeley) 5/6/91 -.\" $NetBSD: acosh.3,v 1.16 2013/01/29 02:54:30 matt Exp $ +.\" $NetBSD: acosh.3,v 1.17 2014/09/19 16:02:58 wiz Exp $ .\" .Dd January 29, 2013 .Dt ACOSH 3 @@ -75,13 +75,13 @@ to EDOM. .Xr exp 3 , .Xr math 3 .\" .Xr matherr 3 -.Sh HISTORY -The -.Fn acosh -function appeared in -.Bx 4.3 . .Sh STANDARDS The .Fn acosh function conforms to .St -isoC-99 . +.Sh HISTORY +The +.Fn acosh +function appeared in +.Bx 4.3 . Index: src/lib/libm/man/asinh.3 diff -u src/lib/libm/man/asinh.3:1.16 src/lib/libm/man/asinh.3:1.17 --- src/lib/libm/man/asinh.3:1.16 Tue Jan 29 02:54:30 2013 +++ src/lib/libm/man/asinh.3 Fri Sep 19 16:02:58 2014 @@ -26,7 +26,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)asinh.3 6.4 (Berkeley) 5/6/91 -.\" $NetBSD: asinh.3,v 1.16 2013/01/29 02:54:30 matt Exp $ +.\" $NetBSD: asinh.3,v 1.17 2014/09/19 16:02:58 wiz Exp $ .\" .Dd January 29, 2013 .Dt ASINH 3 @@ -73,13 +73,13 @@ functions return the inverse hyperbolic .Xr exp 3 , .Xr math 3 .\" .Xr matherr 3 -.Sh HISTORY -The -.Fn asinh -function appeared in -.Bx 4.3 . .Sh STANDARDS The .Fn asinh function conforms to .St -isoC-99 . +.Sh HISTORY +The +.Fn asinh +function appeared in +.Bx 4.3 . Index: src/lib/libm/man/atanh.3 diff -u src/lib/libm/man/atanh.3:1.16 src/lib/libm/man/atanh.3:1.17 --- src/lib/libm/man/atanh.3:1.16 Tue Jan 29 02:54:30 2013 +++ src/lib/libm/man/atanh.3 Fri Sep 19 16:02:58 2014 @@ -26,7 +26,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)atanh.3 5.2 (Berkeley) 5/6/91 -.\" $NetBSD: atanh.3,v 1.16 2013/01/29 02:54:30 matt Exp $ +.\" $NetBSD: atanh.3,v 1.17 2014/09/19 16:02:58 wiz Exp $ .\" .Dd January 29, 2013 .Dt ATANH 3 @@ -75,13 +75,13 @@ to EDOM. .Xr exp 3 , .Xr math 3 .\" .Xr matherr 3 -.Sh HISTORY -The -.Fn atanh -function appeared in -.Bx 4.3 . .Sh STANDARDS The .Fn atanh function conforms to .St -isoC-99 . +.Sh HISTORY +The +.Fn atanh +function appeared in +.Bx 4.3 . Index: src/share/man/man5/ar.5 diff -u src/share/man/man5/ar.5:1.7 src/share/man/man5/ar.5:1.8 --- src/share/man/man5/ar.5:1.7 Thu Aug 7 10:31:16 2003 +++ src/share/man/man5/ar.5 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: ar.5,v 1.7 2003/08/07 10:31:16 agc Exp $ +.\" $NetBSD: ar.5,v 1.8 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -104,6 +104,14 @@ Objects in the archive are always an eve which are an odd number of bytes long are padded with a newline .Pq Dq \en character, although the size in the header does not reflect this. +.Sh COMPATIBILITY +The current a.out archive format is not specified by any standard. +.Pp +ELF systems use the +.Nm +format specified by the +.At V.4 +ABI, with the same headers but different long file name handling. .Sh SEE ALSO .Xr ar 1 , .Xr stat 2 @@ -144,14 +152,6 @@ It has been extended for these reasons, as described above. This format first appeared in .Bx 4.4 . -.Sh COMPATIBILITY -The current a.out archive format is not specified by any standard. -.Pp -ELF systems use the -.Nm -format specified by the -.At V.4 -ABI, with the same headers but different long file name handling. .Sh BUGS The .Tn \*[Lt]ar.h\*[Gt] Index: src/share/man/man5/hosts.equiv.5 diff -u src/share/man/man5/hosts.equiv.5:1.8 src/share/man/man5/hosts.equiv.5:1.9 --- src/share/man/man5/hosts.equiv.5:1.8 Wed Apr 30 13:10:57 2008 +++ src/share/man/man5/hosts.equiv.5 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: hosts.equiv.5,v 1.8 2008/04/30 13:10:57 martin Exp $ +.\" $NetBSD: hosts.equiv.5,v 1.9 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 1997 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -78,6 +78,13 @@ local machine. If a .Em username is not specified, any user may login with the same user name. +.Sh FILES +.Bl -tag -width /etc/hosts.equiv -compact +.It Pa /etc/hosts.equiv +Global trusted host-user pairs list +.It Pa ~/.rhosts +Per-user trusted host-user pairs list +.El .Sh EXAMPLES .Li somehost .Bd -filled -offset indent -compact @@ -152,13 +159,6 @@ file is typically only for .Xr rsh 1 , as root must still login on the console for an interactive login such as .Xr rlogin 1 . -.Sh FILES -.Bl -tag -width /etc/hosts.equiv -compact -.It Pa /etc/hosts.equiv -Global trusted host-user pairs list -.It Pa ~/.rhosts -Per-user trusted host-user pairs list -.El .Sh SEE ALSO .Xr rcp 1 , .Xr rlogin 1 , Index: src/share/man/man5/netgroup.5 diff -u src/share/man/man5/netgroup.5:1.8 src/share/man/man5/netgroup.5:1.9 --- src/share/man/man5/netgroup.5:1.8 Thu Aug 7 10:31:17 2003 +++ src/share/man/man5/netgroup.5 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: netgroup.5,v 1.8 2003/08/07 10:31:17 agc Exp $ +.\" $NetBSD: netgroup.5,v 1.9 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 1992, 1993 .\" The Regents of the University of California. All rights reserved. @@ -112,14 +112,14 @@ Lines that begin with a # are treated as .It Pa /etc/netgroup.db the netgroup database. .El +.Sh COMPATIBILITY +The file format is compatible with that of various vendors, however it +appears that not all vendors use an identical format. .Sh SEE ALSO .Xr getnetgrent 3 , .Xr exports 5 , .Xr nsswitch.conf 5 , .Xr netgroup_mkdb 8 -.Sh COMPATIBILITY -The file format is compatible with that of various vendors, however it -appears that not all vendors use an identical format. .Sh BUGS The interpretation of access restrictions based on the member tuples of a netgroup is left up to the various network applications. Index: src/usr.bin/bthset/bthset.1 diff -u src/usr.bin/bthset/bthset.1:1.4 src/usr.bin/bthset/bthset.1:1.5 --- src/usr.bin/bthset/bthset.1:1.4 Sat Aug 19 16:37:26 2006 +++ src/usr.bin/bthset/bthset.1 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: bthset.1,v 1.4 2006/08/19 16:37:26 plunky Exp $ +.\" $NetBSD: bthset.1,v 1.5 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 2006 Itronix Inc. .\" All rights reserved. @@ -105,10 +105,10 @@ connections on the given RFCOMM server c .It Fl v Be verbose. .El -.Sh EXIT STATUS -.Ex -std .Sh FILES .Pa /dev/mixer +.Sh EXIT STATUS +.Ex -std .Sh SEE ALSO .Xr btsco 4 , .Xr mixer 4 Index: src/usr.bin/btkey/btkey.1 diff -u src/usr.bin/btkey/btkey.1:1.4 src/usr.bin/btkey/btkey.1:1.5 --- src/usr.bin/btkey/btkey.1:1.4 Mon May 18 12:03:06 2009 +++ src/usr.bin/btkey/btkey.1 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: btkey.1,v 1.4 2009/05/18 12:03:06 wiz Exp $ +.\" $NetBSD: btkey.1,v 1.5 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 2007 Iain Hibbert .\" All rights reserved. @@ -102,13 +102,13 @@ Write key to file. .El .Pp Super-user privileges are required to read or write link keys. -.Sh EXIT STATUS -.Ex -std .Sh FILES .Bl -item -compact .It .Pa /var/db/bthcid.keys .El +.Sh EXIT STATUS +.Ex -std .Sh EXAMPLES Read key for mouse at ubt0 from file and write to device .Pp Index: src/usr.bin/btpin/btpin.1 diff -u src/usr.bin/btpin/btpin.1:1.9 src/usr.bin/btpin/btpin.1:1.10 --- src/usr.bin/btpin/btpin.1:1.9 Sat May 16 07:18:42 2009 +++ src/usr.bin/btpin/btpin.1 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: btpin.1,v 1.9 2009/05/16 07:18:42 plunky Exp $ +.\" $NetBSD: btpin.1,v 1.10 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 2006 Itronix Inc. .\" All rights reserved. @@ -83,13 +83,13 @@ Specify path to the control socket. The default path is .Pa /var/run/bthcid . .El -.Sh EXIT STATUS -.Ex -std .Sh FILES .Bl -item -compact .It .Pa /var/run/bthcid .El +.Sh EXIT STATUS +.Ex -std .Sh SEE ALSO .Xr btkey 1 , .Xr btconfig 8 , Index: src/usr.bin/su/su.1 diff -u src/usr.bin/su/su.1:1.50 src/usr.bin/su/su.1:1.51 --- src/usr.bin/su/su.1:1.50 Wed Nov 21 19:30:53 2012 +++ src/usr.bin/su/su.1 Fri Sep 19 16:02:58 2014 @@ -26,7 +26,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)su.1 8.2 (Berkeley) 4/18/94 -.\" $NetBSD: su.1,v 1.50 2012/11/21 19:30:53 pgoyette Exp $ +.\" $NetBSD: su.1,v 1.51 2014/09/19 16:02:58 wiz Exp $ .\" .Dd November 20, 2012 .Dt SU 1 @@ -312,10 +312,6 @@ and groups are treated as indirect groups. The group members of those two groups are treated as groups themselves. .El -.Sh EXIT STATUS -.Nm -returns the exit status of the executed subshell, or 1 if any error -occurred while switching privileges. .Sh ENVIRONMENT Environment variables used by .Nm : @@ -337,6 +333,10 @@ The user ID is always the effective ID ( .Nm unless the user ID is 0 (root). .El +.Sh EXIT STATUS +.Nm +returns the exit status of the executed subshell, or 1 if any error +occurred while switching privileges. .Sh EXAMPLES To become user username and use the same environment as in original shell, execute: .Bd -literal -offset indent Index: src/usr.bin/vgrind/vgrindefs.5 diff -u src/usr.bin/vgrind/vgrindefs.5:1.11 src/usr.bin/vgrind/vgrindefs.5:1.12 --- src/usr.bin/vgrind/vgrindefs.5:1.11 Sat Apr 21 12:27:30 2012 +++ src/usr.bin/vgrind/vgrindefs.5 Fri Sep 19 16:02:58 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: vgrindefs.5,v 1.11 2012/04/21 12:27:30 roy Exp $ +.\" $NetBSD: vgrindefs.5,v 1.12 2014/09/19 16:02:58 wiz Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -64,6 +64,11 @@ The following table names and describes .It "oc bool present means upper and lower case are equivalent" .It "kw str a list of keywords separated by spaces" .El +.Sh FILES +.Bl -tag -width /usr/share/misc/vgrindefs -compact +.It Pa /usr/share/misc/vgrindefs +File containing terminal descriptions. +.El .Sh EXAMPLES The following entry, which describes the C language, is typical of a language entry. @@ -143,11 +148,6 @@ by spaces. If the "oc" boolean is specified, indicating that upper and lower case are equivalent, then all the keywords should be specified in lower case. -.Sh FILES -.Bl -tag -width /usr/share/misc/vgrindefs -compact -.It Pa /usr/share/misc/vgrindefs -File containing terminal descriptions. -.El .Sh SEE ALSO .Xr troff 1 , .Xr vgrind 1 Index: src/usr.bin/wc/wc.1 diff -u src/usr.bin/wc/wc.1:1.15 src/usr.bin/wc/wc.1:1.16 --- src/usr.bin/wc/wc.1:1.15 Thu Feb 18 13:14:51 2010 +++ src/usr.bin/wc/wc.1 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: wc.1,v 1.15 2010/02/18 13:14:51 wiz Exp $ +.\" $NetBSD: wc.1,v 1.16 2014/09/19 16:02:59 wiz Exp $ .\" .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -106,8 +106,6 @@ lines words bytes file_name .Ed .Sh EXIT STATUS .Ex -std wc -.Sh SEE ALSO -.Xr iswspace 3 .Sh COMPATIBILITY Historically, the .Nm @@ -139,6 +137,8 @@ option of the GNU and .Fx .Nm utilities. +.Sh SEE ALSO +.Xr iswspace 3 .Sh STANDARDS The .Nm Index: src/usr.bin/whereis/whereis.1 diff -u src/usr.bin/whereis/whereis.1:1.14 src/usr.bin/whereis/whereis.1:1.15 --- src/usr.bin/whereis/whereis.1:1.14 Thu Aug 7 11:17:17 2003 +++ src/usr.bin/whereis/whereis.1 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: whereis.1,v 1.14 2003/08/07 11:17:17 agc Exp $ +.\" $NetBSD: whereis.1,v 1.15 2014/09/19 16:02:59 wiz Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -62,14 +62,14 @@ The .Nm utility exits 0 on success, 1 on general error, 2 if only some programs were located and 3 if none were. -.Sh SEE ALSO -.Xr whatis 1 , -.Xr which 1 , -.Xr sysctl 8 .Sh COMPATIBILITY The historic flags and arguments for the .Nm utility are no longer available in this version. +.Sh SEE ALSO +.Xr whatis 1 , +.Xr which 1 , +.Xr sysctl 8 .Sh HISTORY The .Nm Index: src/usr.sbin/lptctl/lptctl.8 diff -u src/usr.sbin/lptctl/lptctl.8:1.10 src/usr.sbin/lptctl/lptctl.8:1.11 --- src/usr.sbin/lptctl/lptctl.8:1.10 Wed Apr 30 13:11:02 2008 +++ src/usr.sbin/lptctl/lptctl.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: lptctl.8,v 1.10 2008/04/30 13:11:02 martin Exp $ +.\" $NetBSD: lptctl.8,v 1.11 2014/09/19 16:02:59 wiz Exp $ .\" .\" Copyright (c) 2004 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -89,9 +89,6 @@ on open of control lpt device. .Pp Enables or disables (default) automatic LF on CR for data transfers. .El -.Sh EXIT STATUS -.Nm -returns 0 on success, \*[Gt]0 on failure. .Sh FILES .Bl -item .It @@ -101,6 +98,9 @@ returns 0 on success, \*[Gt]0 on failure .Pa /dev/lpt? - printer ports .El +.Sh EXIT STATUS +.Nm +returns 0 on success, \*[Gt]0 on failure. .Sh SEE ALSO .Xr ioctl 2 , .Xr lpt 4 , Index: src/usr.sbin/mailwrapper/mailwrapper.8 diff -u src/usr.sbin/mailwrapper/mailwrapper.8:1.14 src/usr.sbin/mailwrapper/mailwrapper.8:1.15 --- src/usr.sbin/mailwrapper/mailwrapper.8:1.14 Tue Mar 18 18:20:47 2014 +++ src/usr.sbin/mailwrapper/mailwrapper.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: mailwrapper.8,v 1.14 2014/03/18 18:20:47 riastradh Exp $ +.\" $NetBSD: mailwrapper.8,v 1.15 2014/09/19 16:02:59 wiz Exp $ .\" .\" Copyright (c) 1998 .\" Perry E. Metzger. All rights reserved. @@ -130,9 +130,6 @@ based on configuration information place This permits the administrator to configure which .Tn MTA is to be invoked on the system at run time. -.Sh EXIT STATUS -.Nm -exits 0 on success, and \*[Gt]0 if an error occurs. .Sh FILES Configuration for .Nm @@ -142,6 +139,9 @@ is kept in is typically set up as a symlink to .Nm which is not usually invoked on its own. +.Sh EXIT STATUS +.Nm +exits 0 on success, and \*[Gt]0 if an error occurs. .Sh DIAGNOSTICS .Nm will print a diagnostic if its configuration file is missing or malformed, Index: src/usr.sbin/sa/sa.8 diff -u src/usr.sbin/sa/sa.8:1.16 src/usr.sbin/sa/sa.8:1.17 --- src/usr.sbin/sa/sa.8:1.16 Fri Feb 13 10:17:29 2004 +++ src/usr.sbin/sa/sa.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: sa.8,v 1.16 2004/02/13 10:17:29 wiz Exp $ +.\" $NetBSD: sa.8,v 1.17 2014/09/19 16:02:59 wiz Exp $ .\" .\" Copyright (c) 1994 Christopher G. Demetriou .\" All rights reserved. @@ -223,14 +223,6 @@ Its date of origin is unknown to the aut .Sh AUTHORS .An Chris G. Demetriou .Aq c...@postgres.berkeley.edu . -.Sh BUGS -The number of options to this program is absurd, especially considering -that there's not much logic behind their lettering. -.Pp -The field labels should be more consistent. -.Pp -.Nx Ns 's -VM system does not record the CPU storage integral. .Sh CAVEATS While the behavior of the options in this version of .Nm @@ -247,3 +239,11 @@ The formats of the summary files created are very different than the those used by the original version. This is not considered a problem, however, because the accounting record format has changed as well (since user ids are now 32 bits). +.Sh BUGS +The number of options to this program is absurd, especially considering +that there's not much logic behind their lettering. +.Pp +The field labels should be more consistent. +.Pp +.Nx Ns 's +VM system does not record the CPU storage integral. Index: src/usr.sbin/user/groupinfo.8 diff -u src/usr.sbin/user/groupinfo.8:1.12 src/usr.sbin/user/groupinfo.8:1.13 --- src/usr.sbin/user/groupinfo.8:1.12 Mon May 29 01:38:33 2006 +++ src/usr.sbin/user/groupinfo.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: groupinfo.8,v 1.12 2006/05/29 01:38:33 hubertf Exp $ */ +.\" $NetBSD: groupinfo.8,v 1.13 2014/09/19 16:02:59 wiz Exp $ */ .\" .\" Copyright (c) 1999 Alistair G. Crooks. All rights reserved. .\" @@ -65,12 +65,12 @@ Perform any actions in a verbose manner. The .Ar group argument may either be a group's name, or a gid. -.Sh EXIT STATUS -.Ex -std groupinfo .Sh FILES .Bl -tag -width /etc/usermgmt.conf -compact .It Pa /etc/usermgmt.conf .El +.Sh EXIT STATUS +.Ex -std groupinfo .Sh SEE ALSO .Xr passwd 5 , .Xr group 8 Index: src/usr.sbin/user/user.8 diff -u src/usr.sbin/user/user.8:1.23 src/usr.sbin/user/user.8:1.24 --- src/usr.sbin/user/user.8:1.23 Fri Nov 25 08:00:18 2005 +++ src/usr.sbin/user/user.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: user.8,v 1.23 2005/11/25 08:00:18 agc Exp $ */ +.\" $NetBSD: user.8,v 1.24 2014/09/19 16:02:59 wiz Exp $ */ .\" .\" Copyright (c) 1999 Alistair G. Crooks. All rights reserved. .\" @@ -73,8 +73,6 @@ The utilities by default are built with This allows for further functionality. .Pp For a full explanation of the options available, please see the relevant manual page. -.Sh EXIT STATUS -.Ex -std user .Sh FILES .Bl -tag -width /usr/share/examples/usermgmt -compact .It Pa /etc/skel/.[A-z]* @@ -90,6 +88,8 @@ and the backend commands mentioned above .\" and .\" .Xr group 8 . .El +.Sh EXIT STATUS +.Ex -std user .Sh SEE ALSO .Xr chpass 1 , .Xr group 5 , Index: src/usr.sbin/user/useradd.8 diff -u src/usr.sbin/user/useradd.8:1.42 src/usr.sbin/user/useradd.8:1.43 --- src/usr.sbin/user/useradd.8:1.42 Wed Jan 14 02:18:28 2009 +++ src/usr.sbin/user/useradd.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: useradd.8,v 1.42 2009/01/14 02:18:28 reed Exp $ */ +.\" $NetBSD: useradd.8,v 1.43 2014/09/19 16:02:59 wiz Exp $ */ .\" .\" .\" Copyright (c) 1999 Alistair G. Crooks. All rights reserved. @@ -280,14 +280,14 @@ at very large sites could take several m Until this update is completed, the password file is unavailable for other updates and the new information is not available to programs. -.Sh EXIT STATUS -.Ex -std useradd .Sh FILES .Bl -tag -width /etc/usermgmt.conf -compact .It Pa /etc/usermgmt.conf .It Pa /etc/skel/* .It Pa /etc/login.conf .El +.Sh EXIT STATUS +.Ex -std useradd .Sh SEE ALSO .Xr chpass 1 , .Xr passwd 1 , Index: src/usr.sbin/user/userdel.8 diff -u src/usr.sbin/user/userdel.8:1.32 src/usr.sbin/user/userdel.8:1.33 --- src/usr.sbin/user/userdel.8:1.32 Mon May 29 01:38:33 2006 +++ src/usr.sbin/user/userdel.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: userdel.8,v 1.32 2006/05/29 01:38:33 hubertf Exp $ */ +.\" $NetBSD: userdel.8,v 1.33 2014/09/19 16:02:59 wiz Exp $ */ .\" .\" Copyright (c) 1999 Alistair G. Crooks. All rights reserved. .\" @@ -138,12 +138,12 @@ at very large sites could take several m Until this update is completed, the password file is unavailable for other updates and the new information is not available to programs. -.Sh EXIT STATUS -.Ex -std userdel .Sh FILES .Bl -tag -width /etc/usermgmt.conf -compact .It Pa /etc/usermgmt.conf .El +.Sh EXIT STATUS +.Ex -std userdel .Sh SEE ALSO .Xr passwd 5 , .Xr usermgmt.conf 5 , Index: src/usr.sbin/user/usermod.8 diff -u src/usr.sbin/user/usermod.8:1.32 src/usr.sbin/user/usermod.8:1.33 --- src/usr.sbin/user/usermod.8:1.32 Wed Mar 11 17:54:03 2009 +++ src/usr.sbin/user/usermod.8 Fri Sep 19 16:02:59 2014 @@ -1,4 +1,4 @@ -.\" $NetBSD: usermod.8,v 1.32 2009/03/11 17:54:03 dyoung Exp $ */ +.\" $NetBSD: usermod.8,v 1.33 2014/09/19 16:02:59 wiz Exp $ */ .\" .\" Copyright (c) 1999 Alistair G. Crooks. All rights reserved. .\" @@ -229,11 +229,11 @@ Until this update is completed, the password file is unavailable for other updates and the new information is not available to programs. .Sh EXIT STATUS -.Ex -std usermod -.Sh FILES .Bl -tag -width /etc/usermgmt.conf -compact .It Pa /etc/usermgmt.conf .El +.Sh EXIT STATUS +.Ex -std usermod .Sh SEE ALSO .Xr chpass 1 , .Xr group 5 ,