summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add myself.charnier2002-03-261-0/+1
|
* Removed some namespace pollution (unnecessary nested includes).bde2002-03-262-3/+0
|
* Add FBSDID. Spelling. Remove unused includes. Check more malloc failures.charnier2002-03-263-10/+12
|
* Spell "FreeBSD" correctly.ru2002-03-261-7/+9
| | | | | | | | | `buildworld' is no longer a strict prerequisite for `buildkernel' as of Makefile.inc1,v 1.184. Fix kernel configuration files path to look MI. Mention src/kerberos5.
* REALLY correct typo this time.nectar2002-03-261-2/+2
| | | | Noticed by: roam
* Add FBSDID. Do not \n terminate err() strings. Spelling.charnier2002-03-261-5/+6
|
* Introduce flags enumeration with standardcharnier2002-03-261-4/+5
| | | | ``The following options are available''. Put filename under .Pa.
* Add FBSDID. Remove unused include. Getopt returns -1 not EOF.charnier2002-03-261-5/+5
|
* spellingcharnier2002-03-262-4/+4
|
* Resurrect Lite1's gamma() as C99's tgamma(). Minimal changes.bde2002-03-266-24/+42
|
* Add a dictionary of technical terms.murray2002-03-264-1/+294
| | | | | | | | | | | This file contains FreeBSD/Unix lexicon that is used by the system documentation. It makes a great ispell(1) personal dictionary to supplement the standard English language dictionary, and can be used to greatly reduce the number of false positives when spell checking share/man/*, www/*, or doc/* Discussed with: ru, obrien MFC after: 2 weeks
* Add drivers.conf(5) to the SEE ALSO section.murray2002-03-261-0/+1
| | | | MFC after: 1 week
* A new man page describing the drivers.conf configuration file thatmurray2002-03-261-0/+119
| | | | | | | specifies which kernel options should be removed from the boot kernel (kern.flp) and loaded as modules from the mfsroot.flp. Reviewed by: ru, dd
* Fixed some bugs in the description of plain gamma() (and gammaf()).bde2002-03-261-19/+19
| | | | | Give a more detailed and correct history of when gamma() was actually the gamma function.
* add extra include path to get .h files from source being used to compiledarrenr2002-03-261-0/+1
|
* Misc little cleanups.sos2002-03-265-33/+27
|
* Fixed some minor style bugs.bde2002-03-261-2/+2
|
* Forgot one more instance of my old email address.phk2002-03-261-1/+1
|
* Remove an unused prototype.alc2002-03-261-1/+0
|
* Support -o 0 in join(1) as per SUS.jmallett2002-03-262-17/+35
| | | | | | PR: 36072 Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au> Reviewed by: mike
* Get the guarding right. The IA-64 has a different organization for thisobrien2002-03-261-5/+4
| | | | than our other platforms.
* Don't start any sendmail process in the back ground.obrien2002-03-261-3/+3
| | | | Requested by: gshapiro
* Join continuation lines that fit in 80 columns after removal of __P(()).bde2002-03-261-4/+2
|
* Fixed some style bugs in the removal of __P(()). Some function parameterbde2002-03-264-8/+6
| | | | lists were outdented to column 0.
* Added used include of <sys/sx.h>. Don't depend on namespace pollution inbde2002-03-261-0/+1
| | | | <sys/file.h>.
* Added used include of <sys/sx.h>. Don't depend on namespace pollution inbde2002-03-251-0/+1
| | | | <sys/file.h> or <sys/socketvar.h>.
* Commit work-around for panics when mounting FS's that are auto-loaded asobrien2002-03-251-0/+2
| | | | | | | | | | | | | | | modules (ie. procfs.ko). When the kernel loads dynamic filesystem module, it looks for any of the VOP operations specified by the new filesystem that have not been registered already by the currently known filesystems. If any of such operations exist, vfs_add_vnops function calls vfs_opv_recalc function, which rebuilds vop_t vectors for each filesystem and sets all global pointers like ufs_vnops_p, devfs_specop_p, etc to the new values and then frees the old pointers. This behavior is bad because there might be already active vnodes whose v_op fields will be left pointing to the random garbage, leading to inevitable crash soon. Submitted by: Alexander Kabaev <ak03@gte.com>
* Fix bktr and pcf compilation with LINTnsouch2002-03-255-20/+12
|
* Don't background the sendmail-clientmqueue process -- can give:obrien2002-03-251-1/+1
| | | | sm-queue[181]: NOQUEUE: SYSERR(root): fill_fd: before readcf: fd 1 not open: Bad file descriptor
* Only use POSIX Awk features.obrien2002-03-251-1/+1
|
* Back out revision 1.13 (addition of ipfilter includes). A properru2002-03-251-6/+0
| | | | | fix for the relevant world breakage was later committed in revision 1.20, and this now breaks -DNO_IPFILTER world.
* - Recommit the securelevel_gt() calls removed by commits rev. 1.84 ofarr2002-03-253-6/+16
| | | | | | | | kern_linker.c and rev. 1.237 of vfs_syscalls.c since these are not the source of the recent panics occuring around kldloading file system support modules. Requested by: rwatson
* Fix the case when high letters becomes missing from fold tablesache2002-03-251-4/+9
| | | | for some locales
* Fix grammer in comment.phk2002-03-251-1/+1
| | | | Submitted by: Engin Gunduz <engin@ripe.net>
* Fix the case when record separator is 'Z' letterache2002-03-251-2/+6
| | | | Sense high spaces for -d option too
* Fix typo (missing paren) affecting KRB4 && KRB5 case.nectar2002-03-251-1/+1
| | | | Approved by: des
* Remove double REC_D assignmentache2002-03-251-2/+2
| | | | Cast REC_D optarg assignment to (u_char) to prevent out of bounds indexing
* Fix a typobrian2002-03-251-1/+1
| | | | Submitted by: dirk
* Modernize my email address.phk2002-03-2520-22/+22
|
* Modernize my email addressphk2002-03-2513-13/+13
|
* Modernize my email address.phk2002-03-2517-17/+17
|
* Modernize my email-address.phk2002-03-251-1/+1
|
* Merged from sys/dev/sio/sio.c revisions 1.366 and 1.369.nyan2002-03-252-4/+20
|
* Merged from sys/dev/syscons/syscons.c revision 1.379.nyan2002-03-251-0/+1
|
* Upgrade to GNU texinfo 4.1.ru2002-03-253-3/+16
|
* Update for GNU texinfo 4.1.ru2002-03-253-200/+273
|
* Merge texinfo 4.1 changes onto the trunk.ru2002-03-251-16/+18
|
* Use stock (FSF) version of this file.ru2002-03-256-497/+2189
|
* This commit was generated by cvs2svn to compensate for changes in r93139,ru2002-03-2573-2862/+14642
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of stripped down GNU texinfo 4.1ru2002-03-2580-3374/+16842
| |
OpenPOWER on IntegriCloud