summaryrefslogtreecommitdiff
path: root/lib/libc/db
Commit message (Collapse)AuthorAgeFilesLines
* Sorted lists.Bruce Evans1997-10-211-4/+3
| | | | Notes: svn path=/head/; revision=30624
* Removed the subdirectory paths from the definitions of MAN[1-9]. TheyBruce Evans1997-10-161-4/+3
| | | | | | | | were a workaround for limitations in bsd.man.mk that were fixed about 2 years ago. Notes: svn path=/head/; revision=30482
* Submitted by: Sin'ichiro MIYATANI / Phase One, Inc <siu@phaseone.co.jp>Julian Elischer1997-09-241-1/+1
| | | | | | | | Basic support for the Shift JIS encoding of japanese. (and one tiny typo fixed in a comment) Notes: svn path=/head/; revision=29818
* Many places in the code NULL is used in integer context, wherePoul-Henning Kamp1997-09-181-1/+1
| | | | | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no> Notes: svn path=/head/; revision=29574
* Changed all paths to be relative to src/lib instead of src/lib/libcJohn Birrell1997-05-037-19/+29
| | | | | | | | | | | | | so that all these makefiles can be used to build libc_r too. Added .if ${LIB} == "c" tests to restrict man page builds to libc to avoid needlessly building them with libc_r too. Split libc Makefile into Makefile and Makefile.inc to allow the libc_r Makefile to include Makefile.inc too. Notes: svn path=/head/; revision=25401
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-222-2/+2
| | | | Notes: svn path=/head/; revision=22993
* Reviewed by: Bruce Evans <bde@freebsd.org>Daniel O'Callaghan1997-02-151-0/+6
| | | | | | | | Guard against possible buffer overrun in filename passed. Another candidate for 2.2. Notes: svn path=/head/; revision=22736
* Sweep through the tree fixing mmap() usage:Alexander Langer1997-01-161-1/+1
| | | | | | | | | | | | | | | - Use MAP_FAILED instead of the constant -1 to indicate failure (required by POSIX). - Removed flag arguments of '0' (required by POSIX). - Fixed code which expected an error return of 0. - Fixed code which thought any address with the high bit set was an error. - Check for failure where no checks were present. Discussed with: bde Notes: svn path=/head/; revision=21786
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-142-2/+2
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* make u_char * -> char * conversion explicit.Jordan K. Hubbard1996-12-051-1/+1
| | | | | | | Found-By: insight's "insure++" tool. Notes: svn path=/head/; revision=20159
* Back out most of the last backout. :-) Guido removed the 1.1.1.1->1.1.1.2Peter Wemm1996-10-191-10/+18
| | | | | | | | | changes from the vendor branch as well, backing the db-1.82 changes. This file should now be the same as it was in rev 1.1.1.2. Notes: svn path=/head/; revision=19029
* Backout bzero patch.Guido van Rooij1996-10-181-21/+11
| | | | | | | | | Somehow, I also managed to get quite some other changes in this file at the same time. All I did was checkout the file and made a single change. If someone has an explanation how these PURIFFY defines got in... Notes: svn path=/head/; revision=19024
* When freeing buffers in the db routines, also zeroize themGuido van Rooij1996-10-171-1/+3
| | | | | | | | | This should solve the bug where a coredumping ftpd reveals encrypted passwords. Obtained from: OpenBSD Notes: svn path=/head/; revision=18997
* delete doubled words, e.g.: "the the" -> "the"Wolfram Schneider1996-10-051-1/+2
| | | | Notes: svn path=/head/; revision=18718
* Bring in fixes to db 1.85 from NetBSD. These fixes have been documented asPaul Traina1996-07-213-18/+39
| | | | | | | | being sent back to Bostic by the NetBSD crew. Obtained from: NetBSD-current Notes: svn path=/head/; revision=17235
* General -Wall warning cleanup, part I.Jordan K. Hubbard1996-07-123-6/+6
| | | | | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu> Notes: svn path=/head/; revision=17141
* Close PR#218. Don't reference non-existant dbm(3) and ndbm(3) manualJordan K. Hubbard1996-03-031-4/+4
| | | | | | | pages. Notes: svn path=/head/; revision=14351
* Fix conflicts and merge into mainlinePaul Traina1996-02-2716-25286/+724
| | | | Notes: svn path=/head/; revision=14287
* Import updated Berkeley DB into CSRG branchPaul Traina1996-02-2735-1081/+26814
| | | | Notes: svn path=/vendor/CSRG/dist/; revision=14272
* move stat behind open to cover corner casePaul Traina1996-02-251-2/+8
| | | | Notes: svn path=/head/; revision=14244
* If a .db file is 0 length, initialize it as if it did not exist.Paul Traina1996-02-231-1/+2
| | | | | | | Reviewed by: wollman Notes: svn path=/head/; revision=14213
* Reviewed by: julian and (hsu?)Julian Elischer1996-01-223-10/+10
| | | | | | | | | Submitted by: John Birrel(L?) changes for threadsafe operations Notes: svn path=/head/; revision=13545
* Remove trailing whitespace.Rodney W. Grimes1995-05-3015-30/+30
| | | | Notes: svn path=/head/; revision=8870
* Added the mpool.3 manpage to the installed manpages. It is referred from theAndreas Schulz1994-12-111-0/+1
| | | | | | | other manpages and there is no conflict. Notes: svn path=/head/; revision=5048
* First crack at making libc work with the new make macros. It compiles onGarrett Wollman1994-08-051-1/+1
| | | | | | | | my machine, and a simple static (genassym) and shared (sysctl) executable both work. Still to be done: RPCand YP merge. Notes: svn path=/head/; revision=1849
* BSD 4.4 Lite Lib SourcesRodney W. Grimes1994-05-2771-0/+40026
Notes: svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=1573