diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-11-30 17:03:07 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-11-30 17:03:07 +0000 |
commit | b0c7c04861827626ca0c8bb81ece585b174d4076 (patch) | |
tree | c4b3c2a0aebacbb711565c1987c85eb712495d83 | |
parent | e22ab36ca63cc43fe3c3d2502e265383e718baf0 (diff) |
change Xrs from now-defunct db(3) to dbopen(3); this wasn;t a
straight replace: thanks both to schwarze and maja for feedback
on how to rewrite parts;
i've snuck in an rcs id->openbsd id change in dev_mkdb too;
-rw-r--r-- | lib/libc/db/man/dbm.3 | 12 | ||||
-rw-r--r-- | lib/libc/db/man/ndbm.3 | 10 | ||||
-rw-r--r-- | lib/libc/stdlib/bsearch.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdlib/lsearch.3 | 6 | ||||
-rw-r--r-- | share/man/man5/netgroup.5 | 9 | ||||
-rw-r--r-- | usr.bin/rdist/rdist.1 | 6 | ||||
-rw-r--r-- | usr.bin/vacation/vacation.1 | 8 | ||||
-rw-r--r-- | usr.sbin/dev_mkdb/dev_mkdb.8 | 11 | ||||
-rw-r--r-- | usr.sbin/netgroup_mkdb/netgroup_mkdb.8 | 10 | ||||
-rw-r--r-- | usr.sbin/pwd_mkdb/pwd_mkdb.8 | 10 | ||||
-rw-r--r-- | usr.sbin/smtpd/table.5 | 14 | ||||
-rw-r--r-- | usr.sbin/ypserv/makedbm/makedbm.8 | 12 | ||||
-rw-r--r-- | usr.sbin/ypserv/ypinit/Makefile.yp.8 | 11 | ||||
-rw-r--r-- | usr.sbin/ypserv/yppush/yppush.8 | 8 | ||||
-rw-r--r-- | usr.sbin/ypserv/ypserv/ypserv.8 | 13 |
15 files changed, 67 insertions, 79 deletions
diff --git a/lib/libc/db/man/dbm.3 b/lib/libc/db/man/dbm.3 index 091e4731ae9..e7fb9032bad 100644 --- a/lib/libc/db/man/dbm.3 +++ b/lib/libc/db/man/dbm.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: dbm.3,v 1.14 2015/11/10 23:48:17 jmc Exp $ +.\" $OpenBSD: dbm.3,v 1.15 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 1999 Todd C. Miller <Todd.Miller@courtesan.com> .\" @@ -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: November 10 2015 $ +.Dd $Mdocdate: November 30 2015 $ .Dt DBMINIT 3 .Os .Sh NAME @@ -45,7 +45,7 @@ .Sh DESCRIPTION These functions provide a dbm-compatible interface to the database access methods described in -.Xr db 3 . +.Xr dbopen 3 . Each unique record in the database is a key/content pair, the components of which may be any arbitrary binary data. The key and the content data are described by the @@ -135,7 +135,7 @@ indicate errors by setting the field to .Dv NULL . .Sh SEE ALSO -.Xr db 3 , +.Xr dbopen 3 , .Xr hash 3 , .Xr ndbm 3 .Sh HISTORY @@ -152,8 +152,8 @@ first appeared in .Sh BUGS Because the .Nm dbm -routines are implemented on top of -.Xr db 3 , +routines are implemented on top of those described in +.Xr dbopen 3 , only a single file, .Pa file.pag , is used to actually store the database. diff --git a/lib/libc/db/man/ndbm.3 b/lib/libc/db/man/ndbm.3 index c8d565e1b74..0e5fbadf6de 100644 --- a/lib/libc/db/man/ndbm.3 +++ b/lib/libc/db/man/ndbm.3 @@ -1,6 +1,6 @@ .\" David Leonard, 1998. Placed in the public domain. -.\" $OpenBSD: ndbm.3,v 1.18 2015/11/10 23:48:17 jmc Exp $ -.Dd $Mdocdate: November 10 2015 $ +.\" $OpenBSD: ndbm.3,v 1.19 2015/11/30 17:03:05 jmc Exp $ +.Dd $Mdocdate: November 30 2015 $ .Dt DBM_OPEN 3 .Os .Sh NAME @@ -46,7 +46,7 @@ .Sh DESCRIPTION These functions provide a ndbm-compatible interface to the database access methods described in -.Xr db 3 . +.Xr dbopen 3 . Each unique record in the database is a key/content pair, the components of which may be any arbitrary binary data. The key and the content data are described by the @@ -202,9 +202,9 @@ and a record with the specified key already exists. If an error occurs, the error can be retrieved with .Fn dbm_error and corresponds to those errors described in -.Xr db 3 . +.Xr dbopen 3 . .Sh SEE ALSO .Xr open 2 , -.Xr db 3 , .Xr dbm 3 , +.Xr dbopen 3 , .Xr hash 3 diff --git a/lib/libc/stdlib/bsearch.3 b/lib/libc/stdlib/bsearch.3 index 270086df36d..9c66eac0fea 100644 --- a/lib/libc/stdlib/bsearch.3 +++ b/lib/libc/stdlib/bsearch.3 @@ -29,9 +29,9 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: bsearch.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ +.\" $OpenBSD: bsearch.3,v 1.10 2015/11/30 17:03:05 jmc Exp $ .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: November 30 2015 $ .Dt BSEARCH 3 .Os .Sh NAME @@ -73,7 +73,7 @@ function returns a pointer to a matching member of the array, or a null pointer if no match is found. If two members compare as equal, which member is matched is unspecified. .Sh SEE ALSO -.Xr db 3 , +.Xr dbopen 3 , .Xr lsearch 3 , .Xr qsort 3 , .Xr tsearch 3 diff --git a/lib/libc/stdlib/lsearch.3 b/lib/libc/stdlib/lsearch.3 index a9deec155ae..d82c55c8594 100644 --- a/lib/libc/stdlib/lsearch.3 +++ b/lib/libc/stdlib/lsearch.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: lsearch.3,v 1.13 2015/02/15 02:02:53 tedu Exp $ +.\" $OpenBSD: lsearch.3,v 1.14 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" @(#)lsearch.3 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: February 15 2015 $ +.Dd $Mdocdate: November 30 2015 $ .Dt LSEARCH 3 .Os .Sh NAME @@ -95,7 +95,7 @@ the location referenced by the argument is incremented by one. .Sh SEE ALSO .Xr bsearch 3 , -.Xr db 3 +.Xr dbopen 3 .Sh STANDARDS The .Fn lsearch diff --git a/share/man/man5/netgroup.5 b/share/man/man5/netgroup.5 index 00d71214579..9581daafccb 100644 --- a/share/man/man5/netgroup.5 +++ b/share/man/man5/netgroup.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: netgroup.5,v 1.14 2007/05/31 19:19:58 jmc Exp $ +.\" $OpenBSD: netgroup.5,v 1.15 2015/11/30 17:03:05 jmc Exp $ .\" $NetBSD: netgroup.5,v 1.3 1995/03/18 14:58:34 cgd Exp $ .\" .\" Copyright (c) 1992, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)netgroup.5 8.2 (Berkeley) 12/11/93 .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: November 30 2015 $ .Dt NETGROUP 5 .Os .Sh NAME @@ -76,9 +76,7 @@ should normally be used to access the .Nm database. .Pp -These functions operate on the -.Xr db 3 -version of the +These functions operate on the Berkeley DB version of the .Nm .Pq Pa netgroup.db file which can be generated using @@ -103,6 +101,7 @@ default netgroup list netgroup database .El .Sh SEE ALSO +.Xr dbopen 3 , .Xr getnetgrent 3 , .Xr exports 5 , .Xr netgroup_mkdb 8 diff --git a/usr.bin/rdist/rdist.1 b/usr.bin/rdist/rdist.1 index 61ad24075d6..ebe1385c203 100644 --- a/usr.bin/rdist/rdist.1 +++ b/usr.bin/rdist/rdist.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rdist.1,v 1.46 2015/07/27 17:28:39 sobrado Exp $ +.\" $OpenBSD: rdist.1,v 1.47 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 1983 Regents of the University of California. .\" All rights reserved. @@ -30,7 +30,7 @@ .\" $From: rdist.man,v 6.34 1996/01/29 22:37:19 mcooper Exp $ .\" @(#)rdist.1 6.6 (Berkeley) 5/13/86 .\" -.Dd $Mdocdate: July 27 2015 $ +.Dd $Mdocdate: November 30 2015 $ .Dt RDIST 1 .Os .Sh NAME @@ -345,7 +345,7 @@ to .It Ic sparse Enable checking for sparse files. One of the most common types of sparse files are those produced by -.Xr db 3 . +.Xr dbopen 3 . This option adds some additional processing overhead so it should only be enabled for targets likely to contain sparse files. .It Ic updateperm diff --git a/usr.bin/vacation/vacation.1 b/usr.bin/vacation/vacation.1 index b09b956703c..28f3008d348 100644 --- a/usr.bin/vacation/vacation.1 +++ b/usr.bin/vacation/vacation.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: vacation.1,v 1.22 2014/11/15 14:54:12 bentley Exp $ +.\" $OpenBSD: vacation.1,v 1.23 2015/11/30 17:03:05 jmc Exp $ .\" $NetBSD: vacation.1,v 1.5 1995/08/31 21:57:08 jtc Exp $ .\" .\" Copyright (c) 1985, 1987, 1990, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)vacation.1 8.2 (Berkeley) 4/28/95 .\" -.Dd $Mdocdate: November 15 2014 $ +.Dd $Mdocdate: November 30 2015 $ .Dt VACATION 1 .Os .Sh NAME @@ -132,8 +132,7 @@ line (with any value) is included in the mail headers. .El .Pp The people who have sent you messages are maintained as a -.Xr db 3 -database in the file +Berkeley DB database in the file .Pa .vacation.db in your home directory. .Pp @@ -190,6 +189,7 @@ database file message to send .El .Sh SEE ALSO +.Xr dbopen 3 , .Xr syslog 3 , .Xr smtpd 8 .Sh HISTORY diff --git a/usr.sbin/dev_mkdb/dev_mkdb.8 b/usr.sbin/dev_mkdb/dev_mkdb.8 index 26b93bce05c..2d082a613fe 100644 --- a/usr.sbin/dev_mkdb/dev_mkdb.8 +++ b/usr.sbin/dev_mkdb/dev_mkdb.8 @@ -1,3 +1,5 @@ +.\" $OpenBSD: dev_mkdb.8,v 1.8 2015/11/30 17:03:05 jmc Exp $ +.\" .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -26,9 +28,8 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)dev_mkdb.8 8.1 (Berkeley) 6/6/93 -.\" $Id: dev_mkdb.8,v 1.7 2015/09/10 15:16:44 schwarze Exp $ .\" -.Dd $Mdocdate: September 10 2015 $ +.Dd $Mdocdate: November 30 2015 $ .Dt DEV_MKDB 8 .Os .Sh NAME @@ -40,8 +41,8 @@ The .Nm command creates a -.Xr db 3 -hash access method database in +.Xr hash 3 +access method Berkeley database in .Dq Pa /var/run/dev.db which contains the names of all of the character and block special files in the @@ -70,7 +71,7 @@ database file .Sh SEE ALSO .Xr ps 1 , .Xr stat 2 , -.Xr db 3 , +.Xr dbopen 3 , .Xr devname 3 , .Xr kvm_nlist 3 , .Xr ttyname 3 , diff --git a/usr.sbin/netgroup_mkdb/netgroup_mkdb.8 b/usr.sbin/netgroup_mkdb/netgroup_mkdb.8 index 4b56555aba2..bb9b2ac531a 100644 --- a/usr.sbin/netgroup_mkdb/netgroup_mkdb.8 +++ b/usr.sbin/netgroup_mkdb/netgroup_mkdb.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: netgroup_mkdb.8,v 1.7 2007/05/31 19:20:26 jmc Exp $ +.\" $OpenBSD: netgroup_mkdb.8,v 1.8 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 1994 Christos Zoulas .\" All rights reserved. @@ -28,7 +28,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: May 31 2007 $ +.Dd $Mdocdate: November 30 2015 $ .Dt NETGROUP_MKDB 8 .Os .Sh NAME @@ -40,9 +40,7 @@ .Op Ar file .Sh DESCRIPTION .Nm netgroup_mkdb -creates -.Xr db 3 -style databases for the specified +creates Berkeley databases for the specified .Ar file . If no file is specified, .Pa /etc/netgroup @@ -73,7 +71,7 @@ a temporary file current netgroup file .El .Sh SEE ALSO -.Xr db 3 , +.Xr dbopen 3 , .Xr getnetgrent 3 , .Xr netgroup 5 .Sh BUGS diff --git a/usr.sbin/pwd_mkdb/pwd_mkdb.8 b/usr.sbin/pwd_mkdb/pwd_mkdb.8 index 9026a14fe8b..1f9a12f912e 100644 --- a/usr.sbin/pwd_mkdb/pwd_mkdb.8 +++ b/usr.sbin/pwd_mkdb/pwd_mkdb.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pwd_mkdb.8,v 1.23 2014/01/20 05:07:48 schwarze Exp $ +.\" $OpenBSD: pwd_mkdb.8,v 1.24 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)pwd_mkdb.8 8.1 (Berkeley) 6/6/93 .\" -.Dd $Mdocdate: January 20 2014 $ +.Dd $Mdocdate: November 30 2015 $ .Dt PWD_MKDB 8 .Os .Sh NAME @@ -44,9 +44,7 @@ .Ar file .Sh DESCRIPTION .Nm -creates -.Xr db 3 -style secure and insecure databases for the specified file. +creates a pair of Berkeley databases for the specified file. These databases are then installed into .Pa /etc/spwd.db and @@ -140,7 +138,7 @@ temporary file .Sh SEE ALSO .Xr chpass 1 , .Xr passwd 1 , -.Xr db 3 , +.Xr dbopen 3 , .Xr getpwent 3 , .Xr passwd 5 , .Xr vipw 8 diff --git a/usr.sbin/smtpd/table.5 b/usr.sbin/smtpd/table.5 index 334690e5456..e76d356a148 100644 --- a/usr.sbin/smtpd/table.5 +++ b/usr.sbin/smtpd/table.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: table.5,v 1.4 2014/02/04 16:32:36 eric Exp $ +.\" $OpenBSD: table.5,v 1.5 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 2013 Eric Faurot <eric@openbsd.org> .\" Copyright (c) 2013 Gilles Chehade <gilles@poolp.org> @@ -16,7 +16,7 @@ .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .\" -.Dd $Mdocdate: February 4 2014 $ +.Dd $Mdocdate: November 30 2015 $ .Dt TABLE 5 .Os .Sh NAME @@ -56,17 +56,13 @@ key2 value2 key3 value3 .Ed .Pp -A file table can be converted to a -.Xr db 3 -database using the +A file table can be converted to a Berkeley database using the .Xr makemap 8 utility with no syntax change. .Pp Tables using a .Ql file -or -.Xr db 3 -backend will be referenced as follows: +or Berkeley DB backend will be referenced as follows: .Bd -literal -offset indent table name file:/path/to/file table name db:/path/to/file.db @@ -114,7 +110,7 @@ For .Ql static , .Ql file and -.Xr db 3 +.Xr dbopen 3 backends, a wildcard may be used so the domain table may contain: .Bd -literal -offset indent example.org diff --git a/usr.sbin/ypserv/makedbm/makedbm.8 b/usr.sbin/ypserv/makedbm/makedbm.8 index fd09027af1b..b6289ee84f6 100644 --- a/usr.sbin/ypserv/makedbm/makedbm.8 +++ b/usr.sbin/ypserv/makedbm/makedbm.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: makedbm.8,v 1.18 2013/07/16 11:13:34 schwarze Exp $ +.\" $OpenBSD: makedbm.8,v 1.19 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 1994-97 Mats O Jansson <moj@stacken.kth.se> .\" All rights reserved. @@ -24,7 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: July 16 2013 $ +.Dd $Mdocdate: November 30 2015 $ .Dt MAKEDBM 8 .Os .Sh NAME @@ -78,14 +78,14 @@ that the YP map is going to be handled as secure. .It Fl U Same as .Fl u -but also try -.Xr db 3 -hash format. +but also try the +.Xr hash 3 +format. .It Fl u Dump a database to standard output. .El .Sh SEE ALSO -.Xr db 3 , +.Xr dbopen 3 , .Xr Makefile.yp 8 , .Xr yp 8 , .Xr ypserv 8 , diff --git a/usr.sbin/ypserv/ypinit/Makefile.yp.8 b/usr.sbin/ypserv/ypinit/Makefile.yp.8 index a3d640206c9..afbb22d50d9 100644 --- a/usr.sbin/ypserv/ypinit/Makefile.yp.8 +++ b/usr.sbin/ypserv/ypinit/Makefile.yp.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: Makefile.yp.8,v 1.7 2015/11/29 15:20:46 rpe Exp $ +.\" $OpenBSD: Makefile.yp.8,v 1.8 2015/11/30 17:03:05 jmc Exp $ .\" .\" Copyright (c) 2008 Ingo Schwarze <schwarze@usta.de> .\" @@ -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: November 29 2015 $ +.Dd $Mdocdate: November 30 2015 $ .Dt MAKEFILE.YP 8 .Os .Sh NAME @@ -67,9 +67,8 @@ To regenerate all maps for one single domain, run in the respective domain subdirectory. The .Xr makedbm 8 -utility will be used to create the maps in -.Xr db 3 -format, and they will be stored inside the appropriate domain subdirectory. +utility will be used to create the maps in Berkeley DB format, +and they will be stored inside the appropriate domain subdirectory. .Pp Whenever a YP map has been updated, it is automatically distributed to all slave servers in the respective domain using the @@ -279,7 +278,7 @@ Cookies controlling the operation of .El .Sh SEE ALSO .Xr make 1 , -.Xr db 3 , +.Xr dbopen 3 , .Xr makedbm 8 , .Xr yp 8 , .Xr ypinit 8 , diff --git a/usr.sbin/ypserv/yppush/yppush.8 b/usr.sbin/ypserv/yppush/yppush.8 index 8d3ce32a57e..4e2e53d60cd 100644 --- a/usr.sbin/ypserv/yppush/yppush.8 +++ b/usr.sbin/ypserv/yppush/yppush.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: yppush.8,v 1.17 2015/10/09 10:13:48 jmc Exp $ +.\" $OpenBSD: yppush.8,v 1.18 2015/11/30 17:03:06 jmc Exp $ .\" .\" Copyright (c) 1995 Mats O Jansson <moj@stacken.kth.se> .\" All rights reserved. @@ -24,7 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: October 9 2015 $ +.Dd $Mdocdate: November 30 2015 $ .Dt YPPUSH 8 .Os .Sh NAME @@ -46,8 +46,7 @@ slave servers in the domain. All servers of the domain are fetched from the YP map .Pa ypservers . Before starting distribution, the master server is told to reread its -.Xr db 3 -map files from disk. +Berkeley DB map files from disk. .Pp The options are as follows: .Bl -tag -width Ds @@ -66,6 +65,7 @@ Verbose. Announce what the program is doing. .El .Sh SEE ALSO +.Xr dbopen 3 , .Xr Makefile.yp 8 , .Xr yp 8 , .Xr ypserv 8 diff --git a/usr.sbin/ypserv/ypserv/ypserv.8 b/usr.sbin/ypserv/ypserv/ypserv.8 index d9d4671e738..11dc16876ab 100644 --- a/usr.sbin/ypserv/ypserv/ypserv.8 +++ b/usr.sbin/ypserv/ypserv/ypserv.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ypserv.8,v 1.28 2015/10/28 10:02:59 jmc Exp $ +.\" $OpenBSD: ypserv.8,v 1.29 2015/11/30 17:03:06 jmc Exp $ .\" .\" Copyright (c) 1994 Mats O Jansson <moj@stacken.kth.se> .\" All rights reserved. @@ -24,7 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: October 28 2015 $ +.Dd $Mdocdate: November 30 2015 $ .Dt YPSERV 8 .Os .Sh NAME @@ -40,9 +40,7 @@ is a fundamental part of the network information system called YP. This server provides information from YP maps to the YP clients on the network. .Pp -A YP map is stored on the server as a -.Xr db 3 -database. +A YP map is stored on the server as a Berkeley database. A number of YP maps are grouped together in a domain. .Nm determines the domains it serves by looking for a directory with @@ -91,9 +89,7 @@ On receipt of a hangup signal, .Dv SIGHUP , .Nm will reopen the log file and reread its configuration, -including both the -.Xr db 3 -map files and the +including both the map files and the .Xr ypserv.acl 5 or .Xr securenet 5 @@ -135,6 +131,7 @@ or .It Pa /var/yp/securenet .El .Sh SEE ALSO +.Xr dbopen 3 , .Xr securenet 5 , .Xr ypserv.acl 5 , .Xr Makefile.yp 8 , |