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 /lib/libc/db/man/dbm.3 | |
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;
Diffstat (limited to 'lib/libc/db/man/dbm.3')
-rw-r--r-- | lib/libc/db/man/dbm.3 | 12 |
1 files changed, 6 insertions, 6 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. |