summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Ignore (with a warning message) mtu/mru configurations that are greaterbrian2001-07-171-21/+37
| | | | | | than the maximum physical values. MFC after: 1 week
* Language-dependent catalogs for RELNOTESng should overridebmah2001-07-171-1/+1
| | | | | | the language-independent catalog. Tested by: Alex Kapranoff <kapr@acm.org>
* Minor tweaks, mostly for style.bmah2001-07-161-20/+26
|
* Free things in the right orderbrian2001-07-161-1/+1
|
* MFS: Minor style tweaks and markup fixes.bmah2001-07-161-10/+15
| | | | obtaining.sgml: 1.1.2.1->1.1.2.2
* ftpmail.vix.com doesn't exist anymore; don't mention this as a viablebmah2001-07-161-14/+0
| | | | | | method for obtaining FreeBSD. Discussed with: Paul A Vixie <vixie@vix.com>
* TCPMSS adjusts all TCP SYN packets, not just outgoing ones.brian2001-07-162-2/+2
| | | | Pointed out by: ru
* Change the interrupt handler a bit so that we call the nge_rxeof() handlerwpaul2001-07-161-3/+2
| | | | | | when we get an RX_ERR interrupt rather than the nge_rxeoc() handler. The rxeoc (end of channel) handler attempts to reinitialize the whole NIC, which we don't want to do if we only received a bad packet.
* Note which entries are created by sysinstall(8).nik2001-07-161-1/+4
| | | | Requested by: ru
* MFS: Minor style and markup tweaks.bmah2001-07-161-9/+10
|
* Add an abstract for the README.bmah2001-07-164-0/+17
|
* Fix style bugs introduced by rev 1.28. No functional changes.wollman2001-07-161-11/+12
|
* Clarify that MAKEOBJDIR and MAKEOBJDIRPREFIX are environment variables.ru2001-07-161-1/+1
| | | | Submitted by: bde
* mdoc(7) police: Add strncpy() to the NAME section.ru2001-07-161-1/+1
|
* Grammar: 'effect' is a noun and 'affect' is a verb.sheldonh2001-07-165-6/+7
|
* Spelling: aquire -> acquire.ru2001-07-163-4/+4
|
* Manpage for pfind() and zpfind().ru2001-07-162-1/+87
| | | | Submitted by: Evan Sarmiento <kaworu@sektor7.ath.cx>
* Use PCPU_GET(cpuid) instead of curproc->p_oncpu.tegge2001-07-163-27/+27
| | | | Reviewed by: peter
* Remove unnecessary #include <stdlib.h>kris2001-07-161-1/+0
| | | | | Obtained from: NetBSD MFC After: 1 week
* Oops, commit the version which actually workskris2001-07-161-6/+12
| | | | | Obtained from: NetBSD MFC After: 1 week
* Avoid a compile-time format string warningkris2001-07-161-10/+13
| | | | | Obtained from: NetBSD MFC After: 1 week
* Connect std{in,out,err} to *something* so that "hooks" scripts that writeobrien2001-07-161-0/+7
| | | | | | | | | | to std{err,out} will not spam /etc/resolv.conf. Ted Lemon fixed the problem in version 3 of the client, but only for the pre-daemonized case. Thanks to Brian for pointing that out and helping to make our future dhclient (v3) better. Submitted by: brian
* Use a fixed type for times in on-disk structures for ufs rather thanpeter2001-07-163-5/+6
| | | | something that could potentially change like time_t.
* Add myselfkris2001-07-161-0/+1
|
* Now that config(8) has stopped breaking POLA (mkmakefile.c rev 1.69) byobrien2001-07-151-25/+25
| | | | | always including <KERNEL>.hints if its exist reguardless of the lack of a "hints" directive in the <KERNEL> file; we can have a real hints file again.
* do not M_WAITOK in in6_update_ifa(), since this function can be calledume2001-07-151-1/+6
| | | | | | | under splnet(). (some comment was added by KAME) PR: 28927 MFC after: 1 week
* Sort options in DESCRIPTION.dd2001-07-151-14/+14
|
* Bump date for addition of -D.dd2001-07-151-1/+1
|
* New release notes: dirhash, new ddb(4) commands, and SSE.dd2001-07-152-0/+34
|
* Add prototypes, staticize, constify, don't shadow global variables anddd2001-07-152-54/+60
| | | | | | | functions, remove an unused function, and silence other assorted warnings. Set WARNS=2.
* Set WARNS=2 on programs which compile cleanly.dd2001-07-158-0/+8
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Remove whitespace at EOL.dd2001-07-157-18/+18
|
* Remove whitespace at EOL.dd2001-07-15270-1670/+1670
|
* Remove whitespace at EOL.dd2001-07-15437-1754/+1754
|
* Remove whitespace at EOL and add $FreeBSD$.dd2001-07-151-1/+2
|
* Set WARNS=2 on libraries that compile cleanly with it.dd2001-07-152-4/+2
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Constify, add some prototypes, and set WARNS=2.dd2001-07-155-8/+14
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Constify, de-register-ify, and set WARNS=2.dd2001-07-152-12/+15
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Constify, de-register-ify, __unused-ify, and set WARNS=2.dd2001-07-152-10/+12
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Constify and set WARNS=2.dd2001-07-152-1/+3
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Fix a prototype and set WARNS=2.dd2001-07-152-2/+9
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Change lpd to perform sanity and safety checks on control files as itgad2001-07-154-6/+931
| | | | | | | | | | | | receives them from other hosts. This is meant to protect from both nefarious users (which maybe broke into some remote host that we accept print jobs from), and broken implementations of lpr on other platforms. This is done by changing recvjob.c to call the new ctl_renametf() routine in the new common_source/ctlinfo.[ch] files. This will not affect jobs coming via lpr on the local machine. Reviewed by: freebsd-print@bostonradio.org & freebsd-audit MFC after: 16 days
* Put module directories one per line so adding new modules creates readablebrooks2001-07-152-14/+137
| | | | diffs and produces less conflicts with local source trees.
* The i386-specific includes in this file were "fixed" by bracketing them withbenno2001-07-151-3/+3
| | | | | | | #ifndef __alpha__. Fix this for the rest of the world by turning it into #ifdef __i386__. Reviewed by: obrien
* Replace a call to 'alloca', thus avoiding an error when compiling ongad2001-07-151-8/+14
| | | | | | | freebsd/alpha with -ansi (and on some non-fbsd platforms). This change can only affect the access checking of 'lpr -r'. MFC after: 1 week
* Get rid of one compile-time warning by changing an 'int' to a 'size_t'.gad2001-07-151-6/+10
| | | | MFC after: 1 week
* Get lpr/pac.c to compile without warnings with BDECFLAGSgad2001-07-151-15/+15
| | | | MFC after: 1 week
* Replace three subtly-wrong calls to strncpy with calls to strlcpy, andgad2001-07-152-15/+13
| | | | | | use (size_t) in a few places to avoid compile-time warnings on alpha. MFC after: 1 week
* Fix most of the warnings generated by compiling lpr with -Wnon-const-format,gad2001-07-157-21/+27
| | | | | | | | | often by just telling gcc that some internal routine is "__printflike" (work done by Kris Kennaway <kris@FreeBSD.org>). Also fix the new warnings which show up once gcc starts checking the "printf-like parameters" passed to those routines. MFC after: 1 week
* Turn off preemption on the Alpha for the time being. Peter and JHB aren'tobrien2001-07-151-1/+1
| | | | | | | | | | | | sure when things got so bad (JHB says preemption worked just fine for months before the AlbertVM commit). Even post DillionVM locking commit, Miatas (DEC Personal Workstations) are very fragile -- not making it thru a world build. With this patch it does. Those hacking on SMPng will want to locally back out this commit. The rest of us will want to run with it until the SMPng guys figure out the problem(s). Submitted by: peter
OpenPOWER on IntegriCloud