|
Revision tags: release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0 |
|
| #
8a16b7a1 |
| 20-Nov-2017 |
Pedro F. Giffuni <[email protected]> |
General further adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 3-Clause license.
The Software Package Data Exchange (SPDX) group provides a specification to make it easier f
General further adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 3-Clause license.
The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts.
Special thanks to Wind River for providing access to "The Duke of Highlander" tool: an older (2014) run over FreeBSD tree was useful as a starting point.
show more ...
|
|
Revision tags: release/10.4.0, release/11.1.0 |
|
| #
fbbd9655 |
| 28-Feb-2017 |
Warner Losh <[email protected]> |
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point.
Submitted by: Jan Schaumann <[email protected]> Pull Request: https://github.com/freebsd/freebsd/pull/96
show more ...
|
|
Revision tags: release/11.0.1, release/11.0.0 |
|
| #
2cf5e936 |
| 18-Apr-2016 |
Andriy Voskoboinyk <[email protected]> |
libc: do not include <sys/types.h> where <sys/param.h> was already included
According to style(9): > normally, include <sys/types.h> OR <sys/param.h>, but not both. (<sys/param.h> already includes <
libc: do not include <sys/types.h> where <sys/param.h> was already included
According to style(9): > normally, include <sys/types.h> OR <sys/param.h>, but not both. (<sys/param.h> already includes <sys/types.h> when LOCORE is not defined).
show more ...
|
|
Revision tags: release/10.3.0 |
|
| #
3579f3d9 |
| 24-Feb-2016 |
Pedro F. Giffuni <[email protected]> |
db(3): Fix aliasing warnings from modern GCC.
Obtained from: NetBSD (CVS Rev. 1.20)
|
|
Revision tags: release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0 |
|
| #
5f301949 |
| 18-Jun-2011 |
Ben Laurie <[email protected]> |
Fix clang warnings.
Approved by: philip (mentor)
|
|
Revision tags: release/7.4.0, release/8.2.0, release/8.1.0, release/7.3.0, release/8.0.0 |
|
| #
47f8598e |
| 24-Jun-2009 |
Xin LI <[email protected]> |
Update SCCS IDs for Berkeley DB 1.86 merge.
|
| #
fc35a184 |
| 24-Jun-2009 |
Xin LI <[email protected]> |
style: operators should appear at the line end if we have to wrap.
|
|
Revision tags: release/7.2.0 |
|
| #
f60486b3 |
| 28-Mar-2009 |
Xin LI <[email protected]> |
Several signed/unsigned warning fixes.
|
| #
c9f30aaa |
| 28-Mar-2009 |
Xin LI <[email protected]> |
When allocating memory, zero out them if we don't intend to overwrite them all; before freeing memory, zero out them before we release it as free heap. This will eliminate some potential information
When allocating memory, zero out them if we don't intend to overwrite them all; before freeing memory, zero out them before we release it as free heap. This will eliminate some potential information leak issue.
While there, remove the PURIFY option. There is a slight difference between the new behavior and the old -DPURIFY behavior, with the latter initializes memory with 0xff's. The difference between old and new approach does not generate observable difference.
Obtained from: OpenBSD (partly).
show more ...
|
| #
3df1d934 |
| 04-Mar-2009 |
Xin LI <[email protected]> |
Style changes (including additional casts to shut up warnings). This commit does not affect MD5 of object file.
|
| #
0ac22237 |
| 02-Mar-2009 |
Xin LI <[email protected]> |
Diff reduction against OpenBSD: ANSI'fy prototypes.
(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
Diff reduction against OpenBSD: ANSI'fy prototypes.
(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)
show more ...
|
|
Revision tags: release/7.1.0, release/6.4.0, release/7.0.0, release/6.3.0, release/6.2.0 |
|
| #
c879ae35 |
| 09-Jan-2007 |
Warner Losh <[email protected]> |
Per Regents of the University of Calfornia letter, remove advertising clause.
# If I've done so improperly on a file, please let me know.
|
|
Revision tags: release/5.5.0, release/6.1.0, release/6.0.0, release/5.4.0, release/4.11.0, release/5.3.0 |
|
| #
0c169133 |
| 13-Sep-2004 |
Jun Kuriyama <[email protected]> |
Fix a condition where the hole would be inserted in the wrong place during a split.
Obtained from: NetBSD
|
| #
a5906b6c |
| 10-Sep-2004 |
Jun Kuriyama <[email protected]> |
I found "portsdb -u" dumps core with recent INDEX file, and this is caused by refering broken (uninitialized?) pointer which is retrieved from __bt_new() (and from mpool_new()).
I don't know why thi
I found "portsdb -u" dumps core with recent INDEX file, and this is 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.
show more ...
|
|
Revision tags: release/4.10.0, release/5.2.1, release/5.2.0, release/4.9.0, release/5.1.0, release/4.8.0 |
|
| #
e0554a53 |
| 16-Feb-2003 |
Jacques Vidrine <[email protected]> |
Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled.
Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). 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
show more ...
|
|
Revision tags: release/5.0.0, release/4.6.2 |
|
| #
15164b99 |
| 23-Mar-2002 |
David E. O'Brien <[email protected]> |
W/o __P, the internal declarations will all fit on one line.
|
| #
c05ac53b |
| 21-Mar-2002 |
David E. O'Brien <[email protected]> |
Remove __P() usage.
|
|
Revision tags: release/4.3.0 |
|
| #
7d0cc08e |
| 25-Jun-1998 |
Guido van Rooij <[email protected]> |
Fix btree problems. This passes regressions tests. PR: 7009 Obtained from: http://www.sleepycat.com/update/patch.185.html, patches 1.2, 1.3 and 1.4
|
| #
ef5d438e |
| 27-Feb-1996 |
Paul Traina <[email protected]> |
Import updated Berkeley DB into CSRG branch
|
|
Revision tags: release/1.1.5.1_cvs |
|
| #
58f0484f |
| 27-May-1994 |
Rodney W. Grimes <[email protected]> |
BSD 4.4 Lite Lib Sources
|