Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-06-14 | Fix a buf oflow in EXAMPLES code; millert@ ok | Aaron Campbell | |
2001-06-13 | SYSLEAF, not LEAF. shared libc_r builds now on alpha. | Artur Grabowski | |
2001-06-13 | pretty | Artur Grabowski | |
2001-06-13 | "#endif _THREAD_SAFE" is not legal | Artur Grabowski | |
2001-06-12 | on openbsd, NI_MAXHOST value is different from RFC2553. PR 1870 | Jun-ichiro itojun Hagino | |
2001-06-11 | support EDNS0 (RFC2671) buffer size notification on DNS queries. | Jun-ichiro itojun Hagino | |
"options edns0" in /etc/resolv.conf will enable the behavior. no behavior change if you don't have the line. see resolv.conf(5) for more details. EDNS0 is useful for avoiding TCP DNS queries/replies on larger DNS responses. also, draft-ietf-dnsext-message-size-* plans to mandate EDNS0 support for DNS clients that support IPv6 transport. | |||
2001-06-09 | remove confusing comparison with srand (it does not return the old seed) | assar | |
use .Sh AUTHORS and .An for author | |||
2001-06-05 | Fix pasto; kleink@netbsd.org | Paul Janzen | |
2001-06-05 | License clarification from David Mazieres, ok deraadt@ | Peter Valchev | |
2001-06-05 | repair copyright notices for NRL & cmetz; cmetz | Theo de Raadt | |
2001-06-04 | oh, just include machine/asm.h | Michael Shalayeff | |
2001-06-04 | entrieness cleanup | Michael Shalayeff | |
2001-06-03 | Don't bail out early for users w/o passwd file entries since we may | Todd C. Miller | |
want to cons up a fake prompt for challenge/response auth methods. markus@ OK'd. | |||
2001-06-03 | KERN_NPROCS documentation | Angelos D. Keromytis | |
2001-06-03 | struct diskstats now | Angelos D. Keromytis | |
2001-05-31 | Fix another case of CHDIR("..") pointed out by Bruce Evans | Todd C. Miller | |
<bde@zeta.org.au>. Instead of fixing these inline I've modified my fts_safe_changedir() function so it can be used in this case too. Thanks also to Kris Kennaway <kris@obsecurity.org>. | |||
2001-05-31 | knf | Theo de Raadt | |
2001-05-30 | When changing directory to '..', verify that we really are where | Todd C. Miller | |
we should be. This is similar to the old fts bug but happens when popping out of directories, as opposed to descending into them. Patch based on one by Kris Kennaway <kris@obsecurity.org>. Issue reported by Nick Cleaton <nick@cleaton.net> | |||
2001-05-30 | Complain via syslog if login.conf does not exist. With the BSD | Todd C. Miller | |
authentication stuff in you really want to know if this file doesn't exist. The last two releases have shipped with /etc/login.conf so there's no excuse not to have it, other than an error. | |||
2001-05-29 | mention setusercontext() return value | Todd C. Miller | |
2001-05-20 | Correct interval notation (<= vs. <); tadayuki@mediaone.net | Todd C. Miller | |
2001-05-17 | don't copy past end of record in readdir_r (ok by art) | Jim Rees | |
2001-05-15 | Make path length variables size_t. This fixes the problem where | Todd C. Miller | |
things like rm can't remove files with ridiculously long path names that were created by some script kiddie trying in vain to exploit something. Previously, the length was effectively constrained to USHRT_MAX due to one of the internal structs. Also, nuke FTS_CHDIRROOT since it never worked correctly and hasn't been documented for a long time. | |||
2001-05-14 | Split synopsis, plain read/write don't need uio. | Marc Espie | |
2001-05-14 | Update, sync with reality. deraadt@ok | Angelos D. Keromytis | |
2001-05-13 | unsigned -> unsigned int; grange@rt.mipt.ru | Todd C. Miller | |
2001-05-13 | type of function on seperate line | Theo de Raadt | |
2001-05-11 | PowerPC is big endian, not little endian. This fixes isinf() and isnan() | Dale Rahn | |
2001-05-11 | -1 -> MAP_FAILED | Artur Grabowski | |
2001-05-11 | Add back MAP_COPY. Just describe why it shouldn't be used. | Artur Grabowski | |
2001-05-11 | Remove MAP_COPY. It shouldn't be used anymore. | Artur Grabowski | |
2001-05-11 | MAP_SHARED is better. Maybe we're trying to map /dev/ksyms. | Artur Grabowski | |
And we'll never write to those mappings anyway. | |||
2001-05-11 | MAP_COPY -> MAP_PRIVATE | Artur Grabowski | |
2001-05-11 | Update with new sysctl's | Angelos D. Keromytis | |
2001-05-10 | Use madvise(MADV_FREE) to allow the 'h' option. | Artur Grabowski | |
(the code was already there, just not enabled). | |||
2001-05-10 | Slightly better explaination of the advices (cut 'n paste from sys/mman.h is | Artur Grabowski | |
not good documentation) and document the new ones. Also, remove the BUGS section that said it wasn't implemented. | |||
2001-05-07 | Document boundary condition when size < strlen(dst). | Todd C. Miller | |
2001-05-07 | Back out last change, it is intended behavior and update the block | Todd C. Miller | |
comment to reflect this fact. Too early in the morning for me I guess. | |||
2001-05-07 | strlcat() should return strlen(dst) + strlen(src) when size parameter | Todd C. Miller | |
<= strlen(dst). Bug report by mark.murnane@ireland.sun.com via the GNOME folks. | |||
2001-05-05 | Prototype for nice() lives in unistd.h, not nlist.h (pasto?) | Todd C. Miller | |
2001-05-05 | Add missing __syscall() proto to fix pread() & friends on big endian | Todd C. Miller | |
machines. Found by me, solved by Theo ;-) | |||
2001-05-01 | Use pread() to avoid lseek() abuse, from art's todo list. Tested with | Aaron Campbell | |
config(8) UKC; millert@ ok | |||
2001-04-23 | Various man page fixes and improvements from gluk@ | Aaron Campbell | |
2001-04-22 | In the verbiage for MNT_SOFTDEP add a reference to 'softdep' in | Kenneth R Westerback | |
mount(8). ok deraadt@ | |||
2001-04-20 | Fix an incorrect memset() in __grow_type_table(); dk@homepage.ru | Todd C. Miller | |
While I was there I noticed and fixed a bogus realloc(). We should really check malloc/realloc return values and deal sanely but that will have to be done later. Theo OK'd | |||
2001-04-18 | Most of the systems we run on require an emulated EMODD, so avoid using | Hugh Graham | |
it if a CVTDL would do instead. This path is 80x faster on such systems, and falling back to EMODD if necessary hurts little. Helps programs like nawk, a heavy modf user. | |||
2001-04-16 | Man page for hsearch/hcreate/hdestroy from NetBSD | Todd C. Miller | |
2001-04-09 | 31 vs 32; ianm@cit.uws.edu.au | Theo de Raadt | |
2001-04-05 | remove extra continue statements | Theo de Raadt | |
2001-04-05 | Updates and corrections from gluk@ after recent softupdates changes. | Aaron Campbell | |