aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* MFC r176575:stable/5Xin LI2010-01-071-2/+4
| | | | | | | | | | | | | In pass1(), cap inosused to fs_ipg rather than allowing arbitrary number read from cylinder group. Chances that we read a smarshed cylinder group, and we can not 100% trust information it has supplied. fsck_ffs(8) will crash otherwise for some cases. PR: bin/138043 Reminded by: mckusick Notes: svn path=/stable/5/; revision=201713
* MFC r201137Xin LI2010-01-041-1/+1
| | | | | | | | | Grammar fix. Submitted by: Kenyon Ralph <kenyon kenyonralph com> Notes: svn path=/stable/5/; revision=201464
* Explicitly say that this is an internal library which is intended to beXin LI2009-12-271-1/+10
| | | | | | | | | | | used within FreeBSD base system only, and discourage user applications from using it. User applications should use the expat version from the ports/package collection. Reviewed by: simon (earlier version) Notes: svn path=/stable/5/; revision=201040
* MFC r200392:Xin LI2009-12-142-2/+1
| | | | | | | | | Apply two vendor fixes for CVE-2009-3720. Security: CVE-2009-3720 Notes: svn path=/stable/5/; revision=200496
* MFC rev. 180024:Daniel Gerzo2008-06-301-1/+1
| | | | | | | | | | - Mark the section describing return values with an appropriate section flag. PR: 180024 Notes: svn path=/stable/5/; revision=180119
* - MFC rev. 180030 and 180113:Daniel Gerzo2008-06-301-1/+4
| | | | | | | | | | - add description of the MLINK error - bump a date PR: docs/123019 Notes: svn path=/stable/5/; revision=180116
* MFC: r179705Paul Saab2008-06-102-1/+22
| | | | | | | | Add support for the P212, P410, P410i, P411, and P812 HP Smart Array controllers. Notes: svn path=/stable/5/; revision=179709
* Disown ncurses, as a multi-branch commit test, to make sure the exporterPeter Wemm2008-05-311-1/+0
| | | | | | | handles it. Notes: svn path=/stable/5/; revision=179466
* MFC revision 1.52Xin LI2008-05-241-0/+6
| | | | | | | | | date: 2008/05/10 01:27:23; author: delphij; state: Exp; lines: +6 -0 Add support for LSI 1078DE (ServeRAID-AR10is SAS/SATA Controller) Notes: svn path=/stable/5/; revision=179271
* getopt.c is public domain. Add a comment to that effect.Brooks Davis2008-05-192-57/+5
| | | | | | | | | | | Remove confusing README. PR: bin/98911 Submitted by: Jason McIntyre <jmc at kerhand dot co dot uk> Obtained from: OpenBSD Notes: svn path=/stable/5/; revision=179111
* MFC revision 1.21:Mark Linimon2008-04-232-0/+4
| | | | | | | Add 'arm' category. Notes: svn path=/stable/5/; revision=178436
* MFC revision 1.20:Mark Linimon2008-04-231-4/+6
| | | | | | | Update the FILES section which has been wrong for some time. Notes: svn path=/stable/5/; revision=178435
* MFC: Allow stand.h to be included for multiple timesXin LI2008-04-181-0/+5
| | | | Notes: svn path=/stable/5/; revision=178298
* MFC: Handle bzip2/zlib changes without using patches,Xin LI2008-04-186-143/+32
| | | | | | | | | | | | | by doing the work in a programmatical way. This is an accumulative patch of the following changes: Makefile: 1.46-1.53 bzipfs.c: 1.7 as well as removal of the now unneeded files. Notes: svn path=/stable/5/; revision=178292
* Document SA-08:05.opensshXin LI2008-04-171-0/+7
| | | | Notes: svn path=/stable/5/; revision=178283
* Mention bzip2 1.0.5 MFC.Xin LI2008-04-171-0/+3
| | | | Notes: svn path=/stable/5/; revision=178267
* MFC: bzip2 1.0.5Xin LI2008-04-1733-5471/+2754
| | | | Notes: svn path=/stable/5/; revision=178266
* Fix logic error in sshd(8) concerning the handling of failedColin Percival2008-04-171-3/+0
| | | | | | | | | attempts to bind ports for X11 forwarding. Security: FreeBSD-SA-08:05.openssh Notes: svn path=/stable/5/; revision=178262
* MFC: BTX real mode, GNOME 2.22.Bruce A. Mah2008-04-061-2/+7
| | | | | | | Bump copyright date while here. Notes: svn path=/stable/5/; revision=177947
* Conditionally add mklocale and gencat to bootstrap-tools to allow to buildMax Khon2008-03-312-0/+15
| | | | | | | RELENG_5 on later FreeBSD versions. Notes: svn path=/stable/5/; revision=177803
* MFC of tzdata2008bEdwin Groothuis2008-03-257-39/+246
| | | | Notes: svn path=/stable/5/; revision=177594
* MFC of 1.48Edwin Groothuis2008-03-201-0/+6
| | | | | | | | | | Add projects-all collection to cvs-supfile PR: misc/121680 Submitted by: "Philip M. Gollucci" <pgollucci@p6m7g8.com> Notes: svn path=/stable/5/; revision=177450
* MFC rev. 1.26:Garrett Wollman2008-03-131-1/+19
| | | | | | | | | | stdio is currently limited to file descriptors not greater than {SHRT_MAX}, so {STREAM_MAX} should be no greater than that. (This does not exactly meet the letter of POSIX but comes reasonably close to it in spirit.) Notes: svn path=/stable/5/; revision=177134
* Merge db_command.c:1.77 from HEAD to RELENG_5:Robert Watson2008-03-101-1/+1
| | | | | | | | | | | When killing a user process from DDB, check that the requested signal is > 0 rather than >= 0, or we will panic when trying to deliver the signal. PR: 100802 Submitted by: Valerio Daelli <valerio.daelli at gmail.com> Notes: svn path=/stable/5/; revision=177024
* Merge db_input.c:1.39 from HEAD to RELENG_5:Robert Watson2008-03-101-1/+4
| | | | | | | | | | | | | Reserve two bytes at the end of the DDB input line in db_readline() to hold the newline and nul terminator. Otherwise, there are cases where garbage may end up in the command history due to a lack of a nul terminator, or input may end up without room for a newline. PR: 119079 Submitted by: Michael Plass <mfp49_freebsd@plass-family.net> Notes: svn path=/stable/5/; revision=177021
* Merge db_input.c:1.38 from HEAD to RELENG_5:Robert Watson2008-03-091-1/+1
| | | | | | | | | | | | | | When redrawing an input line, count backspaces to get to the beginning of the input field from the current cursor location, rather than the end of the input line, as the cursor may not be at the end of the line. Otherwise, we may overshoot, overwriting a bit of the previous line and failing to fully overwrite the current line. PR: 119079 Submitted by: Michael Plass <mfp49_freebsd@plass-family.net> Notes: svn path=/stable/5/; revision=176990
* MFV: tzdata2008aEdwin Groothuis2008-03-092-8/+33
| | | | | | | | | | | | Notable changes: - Chilis DST has been extended for 3 weeks. - No leapsecond in 2008 Approved by: grog@ (mentor) Notes: svn path=/stable/5/; revision=176974
* MFC: Fix quoting for the dnsbl example -- m4 misparses quoted strings withGregory Neil Shapiro2008-02-241-1/+1
| | | | | | | | | | | | | commas due to our deconstruction of the line in cf/feature/dnsbl.m4. PR: 120038 Submitted by: mattijs vreeling Revision Changes Path 1.36 +1 -1 src/etc/sendmail/freebsd.mc Notes: svn path=/stable/5/; revision=176500
* MFC: Use better examples (and comment them out for safety).Gregory Neil Shapiro2008-02-241-5/+12
| | | | | | | | | | | PR: 118837 Submitted by: Matthew Seaman Revision Changes Path 1.4 +13 -6 src/etc/mail/access.sample Notes: svn path=/stable/5/; revision=176499
* New errata: SA-08:01.pty (somewhat belatedly), SA-08:03.sendfile,Bruce A. Mah2008-02-161-0/+18
| | | | | | | SA-08:04.ipsec. Notes: svn path=/stable/5/; revision=176343
* MFC rev. 1.50:Markus Brueffer2008-02-161-1/+1
| | | | | | | | | | | Fix calculation of descriptor tag checksums. According to ECMA-167, Part 4, 7.2.3, bytes 0-3 and 5-15 are used to calculate the checksum of a descriptor tag. Approved by: emax (mentor) Notes: svn path=/stable/5/; revision=176341
* MFC: SA-08:03.sendfile, SA-08:04.ipsec, tzdata2007k.Bruce A. Mah2008-02-161-1/+17
| | | | Notes: svn path=/stable/5/; revision=176339
* Fix sendfile(2) write-only file permission bypass. [08:03.sendfile]Simon L. B. Nielsen2008-02-142-2/+2
| | | | | | | | | | Fix IPsec null pointer dereference panic. [SA-08:04.ipsec] Security: FreeBSD-SA-08:03.sendfile Security: FreeBSD-SA-08:04.ipsec Notes: svn path=/stable/5/; revision=176273
* MFC revisions 1.232 and 1.236:Ed Maste2008-02-121-11/+0
| | | | | | | | Remove DIAG code that discards oversized packets. There has been general consensus that this was a bad idea Notes: svn path=/stable/5/; revision=176223
* MFC revision 1.32Xin LI2008-02-111-0/+4
| | | | | | | | | | | | date: 2008/01/12 00:54:47; author: delphij; state: Exp; lines: +4 -0 Plug memory leaks that is observed when argbuf or argspc is used in the context. Submitted by: Michal Vranek <michal.vranek seznam cz> PR: bin/118380 Notes: svn path=/stable/5/; revision=176159
* MFC: 1.36Marius Strobl2008-01-271-0/+5
| | | | | | | Add missing locking for SBus controllers. Notes: svn path=/stable/5/; revision=175729
* MFC revision 1.7Xin LI2008-01-261-4/+4
| | | | | | | | | | | | | | date: 2008/01/12 00:11:26; author: delphij; state: Exp; lines: +4 -4 - Handle the case where interface from "middle" is missing by more carefully inspecting the return value from sysctl(3). [1] - Use calloc instead of malloc+memset of zero. Submitted by: Alexander Chernikov <admin su29 net> [1] PR: bin/119581 MFC after: 2 weeks Notes: svn path=/stable/5/; revision=175692
* Fix issues which allow snooping on ptys.Colin Percival2008-01-141-42/+47
| | | | | | | Security: FreeBSD-SA-08:01.pty Notes: svn path=/stable/5/; revision=175333
* MFC: rev 1.4: forward compatability with cvs-1.12 repositoryPeter Wemm2008-01-071-0/+10
| | | | Notes: svn path=/stable/5/; revision=175126
* MFC of tzdata2007k.Edwin Groothuis2008-01-066-30/+70
| | | | | | | Approved by: re (ken smith) Notes: svn path=/stable/5/; revision=175116
* Update iso3166 with the data from Newsletter VI-1 2007-09-21:Edwin Groothuis2008-01-061-0/+5
| | | | | | | | | Added SAINT BARTHELEMY (BL) and SAINT MARTIN (MF). Approved by: re (ken smith) Notes: svn path=/stable/5/; revision=175114
* MFC rev 1.13:Gabor Kovesdan2007-12-101-0/+2
| | | | | | | | - Add doc/hu_* and doc/mn_* to the refuse examples so that include all of the currently used languages Notes: svn path=/stable/5/; revision=174518
* MFC rev 1.14:Gabor Kovesdan2007-12-101-0/+2
| | | | | | | | - Add doc/hu_* and doc/mn_* to the sample refuse file so that it includes all of the languages Notes: svn path=/stable/5/; revision=174517
* Merge aac_debug.c:1.23 from HEAD to RELENG_6:Ed Maste2007-12-101-11/+11
| | | | | | | | | Respell 'Conatainer' as 'Container'. Reported by: Toomas Aas <toomas dot aas at raad dot tartu dot ee> Notes: svn path=/stable/5/; revision=174513
* New errata: FreeBSD-SA-07:09.random, FreeBSD-SA-07:10.gtar.Bruce A. Mah2007-11-301-0/+12
| | | | Notes: svn path=/stable/5/; revision=174103
* MFC: FreeBSD-SA-07:09.random.Bruce A. Mah2007-11-301-0/+13
| | | | | | | New release note: FreeBSD-SA-07:10.tar. Notes: svn path=/stable/5/; revision=174100
* Correct a random value disclosure in random(4). [07:09]Simon L. B. Nielsen2007-11-292-2/+2
| | | | | | | | | | Correct a gtar directory traversal vulnerability. [07:10] Security: FreeBSD-SA-07:09.random Security: FreeBSD-SA-07:10.gtar Notes: svn path=/stable/5/; revision=174076
* MFC:Max Khon2007-11-242-20/+17
| | | | | | | | | | | Import two binutils header files from FSF 2.15 branch. These fix binutils compilation on i386/amd64 with GCC 4.1 and have no other effect. This fixes RELENG_5 build on RELENG_7/HEAD. Notes: svn path=/stable/5/; revision=173878
* Forced commit to .mc files to force creation of new .cf files for mergemaster.Gregory Neil Shapiro2007-11-220-0/+0
| | | | | | | Approved by: re (kensmith) Notes: svn path=/stable/5/; revision=173845
* MFC: sendmail 8.14.2Gregory Neil Shapiro2007-11-1147-509/+771
| | | | Notes: svn path=/stable/5/; revision=173549