Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-07-31 | Make table tickets per-ruleset instead of global. | Cedric Berger | |
Make table tickets u_int32_t for consistency with other parts of PF. Ok dhartmei@ henning@ | |||
2003-07-31 | various cleanups; david says results are same | Theo de Raadt | |
2003-07-31 | delint | Theo de Raadt | |
2003-07-31 | Historically, patch would treat a bare -p as -p0. This contradicts | Todd C. Miller | |
POSIX and GNU patch has also removed this, so we will too. No objections on icb (no one even seemed to know about this "feature"). | |||
2003-07-31 | Unbreak relative directory handling. Tweak from millert@ | Otto Moerbeek | |
ok millert@ | |||
2003-07-31 | pasto; lha@stacken.kth.se | Markus Friedl | |
2003-07-31 | - Change the hash function to a simple multiplicative one. The old | Otto Moerbeek | |
hash function was apparently optimized for 16 bit processors and generates quite some collisions. - Fix another case of excessive reallocing. ok millert@ | |||
2003-07-31 | knf | Anil Madhavapeddy | |
2003-07-31 | no longer used by syslogd | Anil Madhavapeddy | |
2003-07-31 | Privilege separated syslog daemon. The child listening to log requests drops | Anil Madhavapeddy | |
to user _syslogd and chroots itself, while the privileged parent grants it access to open logfiles and other calls it needs. The only difference from existing behaviour is that if syslog.conf changes and syslogd receives a HUP, it will re-exec itself and have two new PIDs. A HUP with an unchanged config will make syslogd reopen logfiles as before. Lots of help and code from deraadt@ , and advice from millert@ Various versions tested by todd, cloder, mpech, markus, tdeval and others | |||
2003-07-31 | fix the copyin() size for the instruction (and thus avoid oblittering some | Jason Wright | |
stack junk). Remove the math_abort() and bswapw() macros. ok mickey, tested by nick. fpu-less x86 machines now boot but there are still problems. | |||
2003-07-31 | remove autoconf_nzs; from netbsd | Jason Wright | |
2003-07-31 | do not do -Werror here | Theo de Raadt | |
2003-07-31 | enter libutil | Theo de Raadt | |
2003-07-31 | go deeper | Theo de Raadt | |
2003-07-31 | correct comment: atomicio takes vwrite, not write; deraadt@ ok | Anil Madhavapeddy | |
2003-07-31 | typo; | Jason McIntyre | |
2003-07-31 | Enable diff and patch regressions. | Otto Moerbeek | |
ok millert@ | |||
2003-07-31 | Print a maximum of one invalid line number warning per patch in a patch file. | Otto Moerbeek | |
Thanks to espie@ for spotting the problem. ok millert@ henning@ espie@ | |||
2003-07-31 | We no longer use GNU diffutils; don't tell rcs we do... | Todd C. Miller | |
2003-07-31 | Fix botched conversion to getopts; markus@ | Todd C. Miller | |
2003-07-31 | Document more stuff: | Marc Espie | |
{build,run,all}-dir-depends, full-{build,run,all}-depends, {build,lib,run}-depends-list, print-{build,run}-depends, build-depends, clean-depends, depends, lib-depends, regress-depends, run-depends. And obsolete: depends-list, print-depends, print-depends-list, print-package-depends. Almost everything is documented now. | |||
2003-07-31 | Document RECURSIVE_FETCH_LIST, fix output to correspond to reality. | Marc Espie | |
2003-07-31 | remove the old tree when we find a new ticket. | Kenjiro Cho | |
this fixes printing obsolete (non-existent) queues. ok henning@ | |||
2003-07-31 | check whether passwd auth is allowd, similar to proto 1; rob@pitman.co.za | Markus Friedl | |
ok henning | |||
2003-07-31 | Wrap a long line | Otto Moerbeek | |
ok deraadt@ | |||
2003-07-31 | Bye bye GNU gzexe(1). | Otto Moerbeek | |
ok deraadt@ | |||
2003-07-31 | Welcome BSD gzexe(1). | Otto Moerbeek | |
ok deraadt@ | |||
2003-07-31 | A new, BSD licensed gzexe(1). | Otto Moerbeek | |
ok millert@ krw@ | |||
2003-07-31 | The manual page for the new, BSD licensed gzexe(1). | Otto Moerbeek | |
ok jmc@ millert@ krw@ | |||
2003-07-31 | fix a proto | Theo de Raadt | |
2003-07-31 | fix the license | Michael Shalayeff | |
2003-07-31 | o correct exit code when comparing stdin and stdin (a noop) | Todd C. Miller | |
o after copying to a temp file, lseek() to the beginning so the inline cmp routine works. Fixes an exit code issue when comparing against stdin. | |||
2003-07-31 | sync | Theo de Raadt | |
2003-07-31 | skc.4 == sk.4 | Theo de Raadt | |
2003-07-30 | shine a bit more | Theo de Raadt | |
2003-07-30 | hppa no longer needs -O0 to build toke.c; from miod@ and OK mickey@ | Todd C. Miller | |
2003-07-30 | gnu diff goes bye bye | Theo de Raadt | |
2003-07-30 | an absolute cure for an inherited arrhythmia w/ uninitialized variable | Michael Shalayeff | |
2003-07-30 | Remove my email address from my entry in the AUTHORS section | Todd C. Miller | |
2003-07-30 | kill sample device mappings as not really useful | Michael Shalayeff | |
2003-07-30 | indents; jfb ok | Theo de Raadt | |
2003-07-30 | Change: | Jason Wright | |
#define I387 (*(union i387_union *)&(((struct pcb *)curproc->p_addr)->pcb_savefpu.gplemu)) To: #define I387 (curproc->p_addr->u_pcb.pcb_savefpu.gplemu) (and add a few includes of sys/user.h to make it work). | |||
2003-07-30 | deduce the leds address from the model number and thus make some more use of ↵ | Michael Shalayeff | |
that lichtenblinkenschmutz on some more machinens | |||
2003-07-30 | give those leds some haste | Michael Shalayeff | |
2003-07-30 | NULL -> (char *)NULL in execle; ok millert@ | Anil Madhavapeddy | |
2003-07-30 | de-ifdef... now this is starting to make sense (it's still ugly and broken, tho) | Jason Wright | |
2003-07-30 | Use (char *)NULL instead of (char *)0 in execl and execle; Andrey Matveev | Todd C. Miller | |
2003-07-30 | Experimental support for ICH5/ICH5R SATA, inspired from FreeBSD | Alexander Yurchenko | |
ata driver. | |||
2003-07-30 | basic support for ftp:// in PKG_PATH. ok pvalchev@ | Ted Unangst | |