Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-07-12 | Document the API change. | Artur Grabowski | |
2002-07-12 | - Add a flags argument to dohooks. | Artur Grabowski | |
The flag can be either HOOK_REMOVE or HOOK_REMOVE|HOOK_FREE. o HOOK_REMOVE removes the hook from the list before executing it. o HOOK_FREE frees the hook after that. - Let dostartuphooks use HOOK_REMOVE|HOOK_FREE so we can reclaim the memory. - Let doshutdownhooks use HOOK_REMOVE so that when some shutdown hook panics (they do that all the #@$%! time these days) we don't loop for ever. Don't HOOK_FREE, it doesn't matter and I don't want to add another possible panic condition for shutdown hooks. - Actually free the pointer we're throwing away in hook_disestablish (I wonder how much memory this has leaked over the years). | |||
2002-07-12 | print connect failure during debugging mode. | Jun-ichiro itojun Hagino | |
2002-07-12 | There is no "simple_lock_unlock" function... | Miod Vallat | |
2002-07-12 | some clean up. install argument replacements only if we are going to | Niels Provos | |
permit the system call. translate some set[e]{g,u}id calls | |||
2002-07-12 | in the error case, just remove an installed argument replacement, it is not | Niels Provos | |
needed | |||
2002-07-12 | 'this is a scanner' | Todd T. Fries | |
2002-07-12 | sync | Todd T. Fries | |
2002-07-12 | add my scanner | Todd T. Fries | |
2002-07-12 | No need to include files.sun, which only add the "frim event" stuff which | Miod Vallat | |
has absolutely no use on wscons architectures. | |||
2002-07-12 | remove printing of soon-to-be-gone flags. | Artur Grabowski | |
2002-07-12 | Add a missing check for fts_alloc() returning NULL; Chad Loder | Todd C. Miller | |
2002-07-12 | Fix vm -> uvm in a comment. | Artur Grabowski | |
2002-07-12 | Eliminate list_has_sets() by eliminating its only use. Instead of | Kenneth R Westerback | |
checking for sets when the a valid directory is given in get_setsdir(), rely on eqivalent check in get_sets() instead. Reduces code duplication and eliminates a possible duplicated error message about not finding sets in a directory. | |||
2002-07-12 | malloc/strdup failure not handled; cloder@acm.org | Theo de Raadt | |
2002-07-12 | Consolidate repeated logic to get non-empty $resp into a | Kenneth R Westerback | |
function ask_until(). Eliminate some unnecessary ':' statements used to initialize variables by doing initialization in first reference - i.e. when passing the variable to ask_until(). Shrinks and clarifies. | |||
2002-07-11 | clean | Theo de Raadt | |
2002-07-11 | Make sure to protect ttypend with spltty all the time. | Artur Grabowski | |
Implemented with paranoia. | |||
2002-07-11 | sync | Theo de Raadt | |
2002-07-11 | malloc() failure tests; rimshot@pandora.be | Theo de Raadt | |
2002-07-11 | Disable support for the other hardware accelerators. No need to crank the | Theo de Raadt | |
major because these interfaces are really not exported (or used). | |||
2002-07-11 | add rcsid to firmware, and remove defn for tc990_IMAGE_SIZE, its ugly. | Jason Wright | |
(shoulda caught this before like I caught const'fying it, oh well) | |||
2002-07-11 | oppose abort()ion and urinetherapy | Michael Shalayeff | |
2002-07-11 | New version of the firmware from 3Com. Many, many thanks to David Dillow | Jason Wright | |
for fighting with 3com to make this happen! | |||
2002-07-11 | No need to compare sizes of new/old crontab file now that we | Todd C. Miller | |
stash the st_mtimespec of the original and use that to compare. | |||
2002-07-11 | Convert the cmd and response queues to be endian aware, also prepare for new ↵ | Jason Wright | |
firmware version. | |||
2002-07-11 | More syncing with my cron 4.0 patch tree, basically cosmetic: | Todd C. Miller | |
o change an instance of e_none to e_memory that I missed (forgot?) o kill some whitespace o modify malloc failure recovery a bit | |||
2002-07-11 | do not let the group access the sem | Theo de Raadt | |
2002-07-11 | Add a new error code for memory allocation failures, e_memory and | Todd C. Miller | |
use that instead of e_none when we run out of memory. | |||
2002-07-11 | Back out revision 1.3; we return EWOULDBLOCK on lock failure, not EAGAIN. | Todd C. Miller | |
2002-07-11 | sync | Nathan Binkert | |
2002-07-11 | New devices | Nathan Binkert | |
2002-07-11 | print FQDN strings using correct length; ok ho@ jakob@ | Kevin Steves | |
2002-07-11 | We need to map the data segment of ld.so with PROT_EXEC for the GOT. | Artur Grabowski | |
This is in preparation for actually honoring exec protection in sparc pmap. NOTICE! You really want to rebuild the whole userland with this change before the kernel fix goes in. Otherwise all shared binaries will dump core. | |||
2002-07-11 | chroot aware | Henning Brauer | |
2002-07-11 | cleanup | Niels Provos | |
2002-07-11 | KNF. | Artur Grabowski | |
From Lurene Angela Grenier <lurene@daemonkitty.net> | |||
2002-07-11 | sample entry for UserDir /var/www/users; create empty /var/www/users; | Markus Friedl | |
ok henning@, deraadt@ | |||
2002-07-11 | note about the cron job; requested by fred@francis.unitra.sk | Theo de Raadt | |
2002-07-11 | incorrect header; jj.walker@auckland.ac.nz | Theo de Raadt | |
2002-07-11 | www space no longer needs a dev/crypto | Theo de Raadt | |
2002-07-11 | open /dev/crypto with OpenSSL_add_all_algorithms() before calling chroot; | Markus Friedl | |
2002-07-11 | doc that rdate can do SNTP as well | Theo de Raadt | |
2002-07-11 | Please be more portable in usb land | Nathan Binkert | |
2002-07-10 | It is supposed to be printf, not db_printf. This change costed me | Artur Grabowski | |
several days of debugging my laptop because underneath the X it was sitting on the console waiting for me to press some key on the '--db_more--' prompt. | |||
2002-07-10 | proper cdev_decl(crypto) and no private protos | Michael Shalayeff | |
2002-07-10 | let IPv6 fragment go through based on normal rulesets. | Jun-ichiro itojun Hagino | |
TODO: sort-of normalization against fragments for inspection ok dhartmei@ | |||
2002-07-10 | proper cdev_decl(ksyms), fix ksyms's broken functions | Michael Shalayeff | |
2002-07-10 | proper cdev_decl(gpr) | Michael Shalayeff | |
2002-07-10 | no provate cdev_decl()s, they are in sys/conf.h now | Michael Shalayeff | |