summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-08-07A few mvme88k manual pages in section 4, courtesy of Paul Weissmann.Miod Vallat
2003-08-07spacesTheo de Raadt
2003-08-07syncTheo de Raadt
2003-08-07remove junk vendors (might have deleted a few by accident, will re-add as ↵Theo de Raadt
needed)
2003-08-07syncTheo de Raadt
2003-08-07remove a bunch of junkTheo de Raadt
2003-08-07In sendsig() and sigreturn(), use the SS_xxx flags rather than the SA_xxxMiod Vallat
flags (purely cosmetic, as they have the same value). Also some minor indentation/KNF repairs.
2003-08-07better dmesg output and do some spaces; markus@ okMichael Shalayeff
2003-08-07add missing tags and make this compile with debug.Federico G. Schwindt
2003-08-07support AES with 192 and 256 bit keys, too.Markus Friedl
tested with kern.cryptodevallowsoft=1; ok deraadt@
2003-08-07use setusercontext(3) instead of initgroups/setuid/et al., making possibleFederico G. Schwindt
to limit resources based on the user class the binary is run under. while i'm here, use %u for gid_t and uid_t. input and ok from millert and henning.
2003-08-07Allow nested interrupts in the openpic interrupt controller, tested byDale Rahn
brad@ and miod@
2003-08-07make pf_match take u_int32_t instead of u_int16_tHenning Brauer
it's not only used to ,atch on ports any more but uid/gid as well, and uid_t/gid_t are u_int32_t. found by aaron@ ok cedric@
2003-08-07Disable the so-called optimized memcpy functions for small (less than a fewMiod Vallat
hundred bytes) block copies. While the functions themselves are probably optimal or not far from it, the code responsible for their invocation is not, and has a bad tendency of miscomputing the destination buffer address, especially when optimization is used. This is a temporary measure, these functions will be reenabled once a good fix is ready. ok deraadt@ espie@
2003-08-07trivial clean-up: indent tests and mark phony targets.Marc Espie
2003-08-07krb4 bye bye.Hans Insulander
2003-08-07Kerberos 4 has been removed, so don't mention it.Hans Insulander
2003-08-07add possible call to a MANLINT script (defined to be # by default)Marc Espie
`sounds reasonable' millert@
2003-08-07Simplify install logic by using a shell fragment, and a new-fangled .forMarc Espie
loop. `sounds reasonable' millert@
2003-08-07tweak;Jason McIntyre
ok markus@
2003-08-07regenMichael Shalayeff
2003-08-07wrong major for xfsMichael Shalayeff
2003-08-07make net.inet6.ip6.redirect actually work. from kameJun-ichiro itojun Hagino
2003-08-07m_cat might free mbuf passed as 2nd arg. compute pkthdr.len before m_cat.Jun-ichiro itojun Hagino
from kame
2003-08-07watchdog driver for Geode SC1100 (e.g. in soekris net4801); ok mickey@Markus Friedl
2003-08-07syncTheo de Raadt
2003-08-07do not treat traps from the syscall gate page as user codeMichael Shalayeff
2003-08-07des_cipher 3rd param is int32_t not longTheo de Raadt
2003-08-07unsplice crypt.c and morecrypt.c; start to document some bcrypt and md5cryptTheo de Raadt
things in crypt.3, and create MLINKS
2003-08-07ansiTheo de Raadt
2003-08-07ansiTheo de Raadt
2003-08-06typoTheo de Raadt
2003-08-06Remove some double semicolons (hmm, do two semis equal a maxi?).Todd C. Miller
I've skipped the GNU stuff for now. From Patrick Latifi.
2003-08-06must pre-def struct file before circular structsTheo de Raadt
2003-08-06Plug some memory leaks; from Patrick LatifiTodd C. Miller
2003-08-06Fix strlcat() args; from Patrick LatifiTodd C. Miller
2003-08-06Fix a memleak on error in usb_block_allocmem(); Patrick LatifiTodd C. Miller
deraadt@ OK
2003-08-06The cleanup in ohci_init() is wrong; the statements for label bad2Todd C. Miller
and label bad3 should be swapped. From Patrick Latifi ok deraadt@ and fgs@
2003-08-06Remove unreachable return statement after break; Patrick LatifiTodd C. Miller
2003-08-06Remove an unused variable and plug a memory leak; Patrick LatifiTodd C. Miller
2003-08-06getdiskbyname(3) requires <sys/types.h>; Patrick LatifiTodd C. Miller
2003-08-06-h, human readable sizes. from a jonathon gray mail to tech@Ted Unangst
ok ian@ millert@
2003-08-06add missing header. millert ok.Federico G. Schwindt
2003-08-06In setjmp() and sigsetjmp(), be sure to return with r14 and r15 unchanged, asMiod Vallat
they are part of the call preserved register set, and gcc -O relies upon this.
2003-08-06don't repeat the numeric frequency 10 times... use a #defineJason Wright
2003-08-06include URLs to the FAQ where the examplkes appear; Joel KnightHenning Brauer
2003-08-06- fix makefile targets so c++ targets do get checked correctlyAnil Madhavapeddy
- update sscanf-cpp regress results to current error format - add checks for variable length arrays to make sure they are ignored
2003-08-06Check for and skip variable-length arrays while bounds checking insteadAnil Madhavapeddy
of erroring out in a later sanity check. Error noticed by jolan@ This only affects the -Wbounded case
2003-08-06typo;Jason McIntyre
2003-08-06- remove old groff macrosJason McIntyre
- tidy up lists/displays - indent for readability