Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Save errno before calling _close(), which may clear it. | delphij | 2009-03-23 | 1 | -2/+4 | |
| | | | | Obtained from: OpenBSD | |||||
* | use more proper format string. | delphij | 2009-03-23 | 2 | -11/+11 | |
| | | | | Obtained from: NetBSD via OpenBSD | |||||
* | Our realloc(3) and reallocf(3) can handle NULL, which turns it into a | delphij | 2009-03-05 | 4 | -21/+8 | |
| | | | | | | malloc(3) call, so don't test if a pointer is NULL. Obtained from: OpenBSD (in spirit) | |||||
* | Explicitly specify bit width for on-disk data structure. | delphij | 2009-03-04 | 1 | -17/+17 | |
| | | | | Obtained from: OpenBSD | |||||
* | Style changes (including additional casts to shut up warnings). This | delphij | 2009-03-04 | 15 | -36/+35 | |
| | | | | commit does not affect MD5 of object file. | |||||
* | Rename variable 'index' to 'idx' to avoid name collision with index(3), | delphij | 2009-03-03 | 7 | -101/+87 | |
| | | | | | | | this commit does not affect any object code. Obtained from: OpenBSD Verified with: md5(1) | |||||
* | Diff reduction against OpenBSD: ANSI'fy prototypes. | delphij | 2009-03-02 | 28 | -485/+196 | |
| | | | | | | | | (This is part of a larger changeset which is intended to reduce diff only, thus some prototypes were left intact since they will be changed in the future). Verified with: md5(1) | |||||
* | - Remove superfluous comment | gabor | 2009-01-30 | 1 | -2/+0 | |
| | | | | | PR: docs/129400 Submitted by: Gavin Atkinson <gavin@freebsd.org> | |||||
* | getopt(3) returns -1, not EOF. | kevlo | 2008-02-18 | 2 | -2/+2 | |
| | ||||||
* | The usage of "info" in init_hash() is read-only, so constify | delphij | 2007-05-25 | 1 | -3/+3 | |
| | | | | | the internal interface instead of casting away the constant constraint upon calling. | |||||
* | Use C comments since we now preprocess these files with CPP. | deischen | 2007-04-29 | 1 | -2/+4 | |
| | ||||||
* | Per Regents of the University of Calfornia letter, remove advertising | imp | 2007-01-09 | 51 | -204/+0 | |
| | | | | | | clause. # If I've done so improperly on a file, please let me know. | |||||
* | o dbm_close(3) returns void not zero or anything else. Touch .Dd. | maxim | 2006-04-16 | 1 | -5/+1 | |
| | | | | | | PR: docs/80070 Submitted by: Aleksej Saushev MFC after: 2 weeks | |||||
* | Add each directory's symbol map file to SYM_MAPS. | deischen | 2006-03-13 | 1 | -0/+2 | |
| | ||||||
* | Add symbol maps and initial symbol version definitions to libc. | deischen | 2006-03-13 | 1 | -0/+30 | |
| | | | | Reviewed by: davidxu | |||||
* | Fix parameter types of close and get members in DB. | stefanf | 2005-09-10 | 1 | -2/+2 | |
| | ||||||
* | Expand *n't contractions. | ru | 2005-02-13 | 2 | -3/+3 | |
| | ||||||
* | Fix a condition where the hole would be inserted in the wrong | kuriyama | 2004-09-13 | 1 | -4/+2 | |
| | | | | | | place during a split. Obtained from: NetBSD | |||||
* | I found "portsdb -u" dumps core with recent INDEX file, and this is | kuriyama | 2004-09-10 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | caused by refering broken (uninitialized?) pointer which is retrieved from __bt_new() (and from mpool_new()). I don't know why this linp[0] is read before stored because this should be controlled by .lower and .upper member of PAGE structure which are correctly initialized. But this workaround fixes the problem on my environment and this module has #ifdef PURIFY option which initializes new and reused memory from mpool by memset(p, 0xff, size) like as I did. Please feel free to fix the real bug instead of my workaround. | |||||
* | Fix format strings to unbreak with -DDEBUG option. | kuriyama | 2004-09-10 | 3 | -17/+18 | |
| | ||||||
* | Remove the misleading description of the 'key' argument to | roam | 2004-08-27 | 1 | -17/+1 | |
| | | | | | | | | | mpool_open(3) - it is *not* really used for synchronization; in fact, it is not used at all. PR: 70929 Submitted by: Martin Kammerhofer <dada@sbox.tugraz.at> MFC after: 3 days | |||||
* | Mechanically kill hard sentence breaks. | ru | 2004-07-02 | 3 | -4/+4 | |
| | ||||||
* | Simplify mpool_get() and mpool_write() by using pread() and pwrite() | das | 2004-01-20 | 1 | -6/+3 | |
| | | | | | | | instead of lseek()/_read() and lseek()/_write(). PR: bin/54276 Submitted by: <dnelson@allantgroup.com> | |||||
* | mdoc(7): Use the new feature of the .In macro. | ru | 2003-09-08 | 5 | -7/+7 | |
| | ||||||
* | Fix a sizeof error in __bt_put: when writing they key and data sizes | tmm | 2003-05-30 | 1 | -3/+5 | |
| | | | | | | | | | | to a buffer in the big key/data case, memmove() was used on pointers to size_ts, but only sizeof(u_int32_t) bytes where copied. This broke on big_endian architectures where sizeof(size_t) > sizeof(u_int32_t). This bug broke portupgrade (by way of ruby_bdb1) on sparc64. Approved by: re (rwatson) | |||||
* | Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). | nectar | 2003-02-16 | 6 | -10/+14 | |
| | | | | | | | Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled. Reviewed by: /sbin/md5 | |||||
* | The .Fn function | charnier | 2003-02-06 | 1 | -12/+13 | |
| | ||||||
* | Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup, | schweikh | 2003-01-01 | 1 | -1/+1 | |
| | | | | especially in troff files. | |||||
* | mdoc(7) police: "The .Fa argument.". | ru | 2002-12-19 | 5 | -22/+46 | |
| | ||||||
* | mdoc(7) police: "The .Fn function". | ru | 2002-12-18 | 3 | -6/+50 | |
| | ||||||
* | libc_r wasn't so tied to libc for 22 months. | ru | 2002-11-18 | 7 | -14/+12 | |
| | ||||||
* | Correct the headers needed to use dbopen(3) and friends. | markm | 2002-10-18 | 1 | -1/+2 | |
| | ||||||
* | Assume __STDC__, remove non-__STDC__ code. | alfred | 2002-05-28 | 1 | -14/+1 | |
| | | | | Submitted by: keramida | |||||
* | W/o __P, the internal declarations will all fit on one line. | obrien | 2002-03-23 | 1 | -6/+3 | |
| | ||||||
* | Fix the style of the SCM ID's. | obrien | 2002-03-22 | 3 | -3/+3 | |
| | | | | I believe have made all of libc .h's as consistent as possible. | |||||
* | Fix the style of the SCM ID's. | obrien | 2002-03-22 | 23 | -36/+62 | |
| | | | | I believe have made all of libc .c's as consistent as possible. | |||||
* | Remove multi-line __P() usage. | obrien | 2002-03-22 | 4 | -6/+6 | |
| | ||||||
* | Remove __P() usage. | obrien | 2002-03-21 | 22 | -169/+189 | |
| | ||||||
* | Remove 'register' keyword. | obrien | 2002-03-21 | 10 | -81/+93 | |
| | ||||||
* | mdoc(7) police: Use the new .In macro for #include statements. | ru | 2001-10-01 | 6 | -13/+13 | |
| | ||||||
* | Mark some functions as __printflike() and/or taking const char * arguments | kris | 2001-08-20 | 1 | -1/+1 | |
| | | | | | | instead of char *. MFC after: 2 weeks | |||||
* | mdoc(7) police: replace `\*(Ba' with a simple `|', it's handled specially. | ru | 2001-08-16 | 1 | -1/+1 | |
| | ||||||
* | Don't clobber the default for CFLAGS. | bde | 2001-08-03 | 1 | -1/+2 | |
| | ||||||
* | mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2). | ru | 2001-07-06 | 1 | -1/+1 | |
| | ||||||
* | Remove duplicate words. | dd | 2001-06-24 | 1 | -1/+1 | |
| | ||||||
* | Add new, from scratch implementation of hsearch() et al that actually works. | ru | 2001-05-15 | 2 | -110/+1 | |
| | | | | | Obtained from: NetBSD MFC after: 1 month | |||||
* | MAN[1-9] -> MAN. | ru | 2001-03-27 | 1 | -1/+1 | |
| | ||||||
* | mdoc(7) cleanup. | ru | 2001-02-12 | 1 | -90/+86 | |
| | ||||||
* | Add a man page for the dbm_* functions, and update the Makefile to link | nik | 2001-02-11 | 2 | -1/+211 | |
| | | | | | | | | | | it in. Some review from -hackers (some time ago), and I think the best way to get this improved (if it needs improving) or updating, is to bring it in. PR: docs/12557 Submitted by: Tim Singletary <tsingle@triana.gsfc.nasa.gov> | |||||
* | Fix typo: compatability -> compatibility. | asmodai | 2001-02-06 | 1 | -1/+2 | |
| | | | | | | Compatability is not an existing english word. Add $FreeBSD$. |