Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-08-08 | New timeouts. | Miod Vallat | |
if_gm tested by matthieu@, the whole ok'd by drahn@ | |||
2001-08-08 | New timeouts. | Miod Vallat | |
2001-08-08 | move the com_raisedtr proto for timeout_set | Michael Shalayeff | |
2001-08-08 | permanently_set_uid is a noop if user is not privilegued; | Markus Friedl | |
fixes bug on solaris; from sbi@uchicago.edu | |||
2001-08-08 | add CAVEATS section that talks about trust and the AD-bit | Jakob Schlyter | |
2001-08-08 | Prevent logging strerror(0) on EOF; patch sent to sendmail-bugs@sendmail.ORG | Todd C. Miller | |
2001-08-08 | Reference altq(9) in addition to altqd(8) in options(4) because | Heikki Korpela | |
it's a great manual page. :-) ok millert@ | |||
2001-08-08 | vga_{isa,pci}.h -> vga.h since the former no longer exists. | Todd C. Miller | |
2001-08-08 | remove IPCOMP. deraadt@ ok. | Jean-Jacques Bernard-Gundol | |
2001-08-08 | sync | Theo de Raadt | |
2001-08-08 | IPCOMP removal. deraadt@ ok. | Jean-Jacques Bernard-Gundol | |
2001-08-08 | remove IPCOMP. derradt@ ok. | Jean-Jacques Bernard-Gundol | |
2001-08-08 | new stuff | Theo de Raadt | |
2001-08-08 | initialize timeouts, since it's a copy of comattach; reported by Larry Moore ↵ | Michael Shalayeff | |
<lmoore@starwon.com.au> | |||
2001-08-08 | remove IPCOMP option. deraadt@ ok. | Jean-Jacques Bernard-Gundol | |
2001-08-08 | Remove IPCOMP option, it's now part of IPSEC option. You still need to | Jean-Jacques Bernard-Gundol | |
enable ipcomp via sysctl to use it. deraadt@ ok. | |||
2001-08-08 | __dead doesn't work on function pointers. | Artur Grabowski | |
2001-08-08 | The kernel message for reaching the mclpool limit has | Heikki Korpela | |
changed; make options(4) reflect this change. ok miod@, art@ | |||
2001-08-08 | when describing the -o option, give -o Protocol=1 as the specific example | Theo de Raadt | |
since we are SICK AND TIRED of clueless people who cannot have difficulty thinking on their own. | |||
2001-08-08 | rewrite signal handlers to be race-safe. rewrite USC/ISI code I think | Theo de Raadt | |
sufficiently so that there is nothing in there that doesn't look like any generic select loop from stevens. The FD_SET code remains overflowable... next thing to fix.. | |||
2001-08-08 | put a kjc copyright on this | Theo de Raadt | |
2001-08-08 | split up the gethost*() functions a bit more, to make it more obvious what | Theo de Raadt | |
is going on. This could be improved further by always passing around fat sockaddr's I think. | |||
2001-08-08 | do not use %m in syslog() when errno is known to be 0 | Theo de Raadt | |
2001-08-08 | leave the dma engines polling for a bit after the last descriptor has been | Jason Wright | |
passed through. After a few seconds (5 currently) of no activity, stop them completely. | |||
2001-08-08 | Initial support for RC4 operations (This probably won't work yet as | Jason Wright | |
the caller of *_process() doesn't seem to initialize crd_klen correctly; it has a zero value... still debugging...). | |||
2001-08-08 | __dead not __noreturn__ | Todd C. Miller | |
2001-08-08 | nuke __attribute__((__noreturn__)) when used in conjunction with __dead | Todd C. Miller | |
2001-08-08 | nuke __attribute__((__noreturn__)) when used in conjunction with __dead | Todd C. Miller | |
2001-08-08 | Fix broken logic in wait flags passed to extent_alloc. | Artur Grabowski | |
2001-08-08 | do not free unallocated memory, PR#1989 | Jakob Schlyter | |
2001-08-07 | Not used. | Miod Vallat | |
2001-08-07 | One more typo. | Miod Vallat | |
There are probably lots of free commits left for spelling wizards out there. | |||
2001-08-07 | Change tsleep into ltsleep. | Artur Grabowski | |
ltsleep takes an additional argument - a simplelock and unlocks it when it's safe to do so. tsleep now becomes a wrapper around ltsleep. From NetBSD | |||
2001-08-07 | Sprinkle a few Holy Volatiles (tm). | Miod Vallat | |
2001-08-07 | Make config(8) choose which source files to exclude, from the kernel | Miod Vallat | |
configuration file options, rather than putting ugly preprocessor statements and compile empty files. | |||
2001-08-07 | Make kerberosV compile entirely on platforms lacking shared libraries, | Miod Vallat | |
i.e. hppa, mvme88k and vax. Discussed a lot with hugh@ and (less) with hin@, probably the least ugly patch we could make. | |||
2001-08-07 | Use mktemp(1) to avoid /tmp race found by terra@diku.dk. | Todd C. Miller | |
Fix based on patch from mbing@nfr.net. | |||
2001-08-07 | remove redundant __noreturn__ attributes now that __dead is sane for modern gcc | Todd C. Miller | |
2001-08-07 | For gcc >= 2.5 #define __dead and __pure using the __noreturn__ | Todd C. Miller | |
and __const__ attributes. | |||
2001-08-07 | We now have predict_{true,false} | Artur Grabowski | |
2001-08-07 | Do the memset only if tcgetattr() fails just in case the failed | Todd C. Miller | |
tcgetattr() mucked with the passed in struct termios in some way. | |||
2001-08-07 | Keep a verbatim copy of the old struct termios instead of using | Todd C. Miller | |
flags to keep track of what we changed. Print a newline if echo is off, even if we didn't turn it off ourselves. Fixes art's problem with a newline not being printed when piping to less. | |||
2001-08-07 | tag fixes; Denis Afonin <dfa@solo.ee> | Jason Wright | |
2001-08-07 | Add a bunch of macros from NetBSD. | Artur Grabowski | |
__GNUC_PREREQ__(minor,major) evaluates to true if use gcc that has the version major.minor or newer. __predict_{true,false} are there to make use of the new branch prediction hint mechanisms in gcc 3.0. | |||
2001-08-07 | No need to remove /etc/nologin after killing shutdown; signal | Heikki Korpela | |
handler will take care of this. Pointed out by bk@rt.fm; millert@ ok. (Although it was millert@ who asked for it in the first place, bad me for not checking the source. :-) | |||
2001-08-07 | Document SEMMNI and SEMMNS kernel options as they are | Heikki Korpela | |
referenced in the postgresql port README file. Also document the SEMUME and SEMMNU options (suggested by millert@). Ok millert@, peter@ | |||
2001-08-07 | typo. | Peter Valchev | |
2001-08-07 | Document how to cancel a scheduled shutdown with kill(1). | Heikki Korpela | |
Also mention that /etc/nologin should be deleted after this if needed. ok millert@ | |||
2001-08-07 | suggest CET, not MET, ok deraadt@ | Markus Friedl | |
2001-08-07 | 2 system dependent files removed. | Brad Smith | |
-- Ok'd by: deraadt@ |