diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-15 05:11:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-15 05:11:26 +0000 |
commit | 3941e90b879e925d0fef8f0733e1d9c2e1861db5 (patch) | |
tree | 82b3c2fe01e0932c532b9e2a3f038a110315707d /lib/libc/db/recno/rec_put.c | |
parent | 0584840a66631455c4c44387526ce706056faee0 (diff) |
o Minor changes from db.1.86 (sleepycat). Does not include the new hash
routines since they cannot read a hashed .db file from the old code.
Most of these files just have their RCS/SCCS tags standardized.
Note that mpool.3 has not been updated to reflect the new mpool interface.
o Add a real dbm(3) manpage
Diffstat (limited to 'lib/libc/db/recno/rec_put.c')
-rw-r--r-- | lib/libc/db/recno/rec_put.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/libc/db/recno/rec_put.c b/lib/libc/db/recno/rec_put.c index 1cb617b46cc..9db96f208fd 100644 --- a/lib/libc/db/recno/rec_put.c +++ b/lib/libc/db/recno/rec_put.c @@ -1,3 +1,5 @@ +/* $OpenBSD: rec_put.c,v 1.5 1999/02/15 05:11:25 millert Exp $ */ + /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -32,7 +34,11 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: rec_put.c,v 1.4 1998/08/14 21:39:21 deraadt Exp $"; +#if 0 +static char sccsid[] = "@(#)rec_put.c 8.7 (Berkeley) 8/18/94"; +#else +static char rcsid[] = "$OpenBSD: rec_put.c,v 1.5 1999/02/15 05:11:25 millert Exp $"; +#endif #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> |