summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-04-11typos;Jason McIntyre
wscons(4): ok miod@
2003-04-11Delete a doubly redundant call to timeout_del() in osiop_timeout.Kenneth R Westerback
First, the only way to get there was if the timeout fired, in which case timeout_del() is a noop. Second, it will be called in osiop_scsidone() for every active command when osiop_reset() is called in osiop_timeout(). From mickey@
2003-04-11zombies can't live allproc list. art fixed the real problem a while ago.Ted Unangst
2003-04-11always reread curproc and frame on return from the system callMichael Shalayeff
2003-04-11count traps and interruptsMichael Shalayeff
2003-04-11bindresvport() does not automatically select another port if theTodd C. Miller
specified one is in use (closes PR 3192). While I am here, reorganize and clean up much of the wording. This now reads like a native speaker of English wrote it.
2003-04-10Some style from Andrey MatveevTodd C. Miller
o avoid including sys/types.h and sys/param.h together o sort includes o in one place warn(3) -> warnx(3) o proper usage() (argument `todir' is optional) Also, fromdir was marked as optional in the manual--it is not.
2003-04-10more POSIX chownTodd C. Miller
2003-04-10make all entry points of the same number of arguments and that greatly ↵Michael Shalayeff
simplifies the call setup in the scheduler
2003-04-10deallocate resources on failures; pt out by tedu@; millert@ okMichael Shalayeff
2003-04-10make the second example valid; ok millert@Jason Peel
2003-04-10more POSIX chown; Leandro CostaTodd C. Miller
2003-04-10POSIX chownTodd C. Miller
2003-04-10POSIX chown; Leandro CostaTodd C. Miller
todd@ OK
2003-04-10Only print the "helpful" prompt in -d mode if there is room on theTodd C. Miller
bottom line for it. Closes PR 3189.
2003-04-10Proper use of bus_space makes the need for <machine/pio.h> obsolete, whichMiod Vallat
is good since not all isa capable platforms provide such a file.
2003-04-10woah. last commit contained way too much. revert, and apply only the ↵Ted Unangst
change intended.
2003-04-10regen with autoconf 2.52Jakob Schlyter
2003-04-10provide strlcat() and strlcpy() for platform without them. althoughJakob Schlyter
this is not needed in OpenBSD, we'll keep the code here to stay in sync. license change for strlcat/strlcpy ok millert@.
2003-04-10don't try to update directories on zombies. pr2030. ok artTed Unangst
2003-04-10off by one bounds check in diag code. ok art.Ted Unangst
2003-04-10unbreak linking on elf - stupid kerberosPeter Valchev
2003-04-10Replace strcpy() w/ strlcpy() from espie@Todd C. Miller
Don't try to free pw_dir -- it is no longer allocated separately. Instead, add an extra param to sgetpwnam() to allow it to dupe an existing struct passwd * (instead of doing a lookup by username) and use this to reallocate pw in the case where pw_dir is the NULL string. deraadt@ OK
2003-04-09makeing local table static saves some bytes; idea from mickey@Markus Friedl
2003-04-09makeing a local array static saves some bytes; idea from mickey@Markus Friedl
2003-04-09missing nl in the error msg and a return afterwardsMichael Shalayeff
2003-04-09a couple of sigmatel codec idsMichael Shalayeff
2003-04-09fix bad entry definitionMichael Shalayeff
2003-04-09KNFHenning Brauer
2003-04-09fix the readonly objects placement into thee .rodata proper; espie@ okMichael Shalayeff
2003-04-09xmalloc called with the wrong sizeof in sentinel attribute setupAnil Madhavapeddy
espie@ ok
2003-04-09Less noise for missing crl dir, demoted to debug message.Hakan Olsson
2003-04-09on "pfctl -vvss", print the anchor rule number when there is one.Cedric Berger
ok dhartmei@ henning@
2003-04-09Change pf_state structure to point to both a rule and the anchor,Cedric Berger
so states created by rules in anchors correctly use rule options like routing and (soon) queues... Rule number bumped to 32 bit value. USERLAND NEED TO BE RECOMPILED. ok dhartmei@ henning@
2003-04-09create /etc/isakmpd/crls to fix a warning when starting isakmpdTodd T. Fries
from Mathieu Sauve-Frankel m dot sauve at secureops dot com ok brad@
2003-04-09string shit; ok dhartmei@Henning Brauer
2003-04-09Remove one of two identical comment blocksNiklas Hallqvist
2003-04-09strip trailing whitespace from config lines before parsing. Fixes bz 528;Damien Miller
ok markus@
2003-04-09more string shit, ok bob and vincentHenning Brauer
2003-04-09add strl{cat,cpy} to unbreak "make build" on sparc64Nikolay Sturm
OK miod@
2003-04-09syetem -> system;Jason McIntyre
from Marko Cehaja closes PR 3187
2003-04-09Disable Kerberos 4 support.Hans Insulander
ok markus@
2003-04-09Don't include <krb.h> when compiling with Kerberos 5 supportHans Insulander
2003-04-09Correct commentary describing page table layoutsNiklas Hallqvist
2003-04-09typos;Jason McIntyre
sti(4): ok mickey@
2003-04-09document that rewind/eject features of tape devices depend on name ofJason McIntyre
tape device; reference st(4) for an explanation. diff from Olivier Cherrier; ok millert@
2003-04-09Cleanup/make more consistant the various DEBUG flags and uses thereof.Kenneth R Westerback
Eliminate a couple of unused debug defines and variables. ok mickey@
2003-04-09Reduce default OSIOP_DEBUG output to a useful volume.Kenneth R Westerback
From mickey@
2003-04-09sprintf->snprintf. miod@, grange@ ok.Hakan Olsson
2003-04-08Replace strcpy w/ strlcpy(); deraadt@ OKTodd C. Miller