Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-03 | Remove promotion clause; OK w/ deraadt@ | Todd C. Miller | |
2003-06-03 | Use an ISC-tyle license for all my code; it is simpler and more permissive. | Todd C. Miller | |
2003-06-03 | kill clause 3 and 4 from several of my copyrights, cleanup. | Dale Rahn | |
2003-06-03 | license cleaning. | Artur Grabowski | |
2003-06-02 | remove clause 3 and 4. -moj | Mats O Jansson | |
2003-06-02 | nuke clause 3 & 4 | Jason Wright | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-06-02 | section reorder; | Jason McIntyre | |
2003-06-02 | section reorder; | Jason McIntyre | |
2003-06-02 | - kill whitespace at EOL | Jason McIntyre | |
- removed empty ENVIRONMENT section | |||
2003-06-02 | section reorder; | Jason McIntyre | |
2003-06-02 | - remove .Pp's before .Sh | Jason McIntyre | |
- correct .Xr - .Ox instead of OpenBSD - whitespace between punctuation | |||
2003-06-02 | An/Aq for author; | Jason McIntyre | |
2003-06-02 | - section reorder | Jason McIntyre | |
- whitespace at EOL | |||
2003-06-02 | - section reorder | Jason McIntyre | |
- An/Aq for author | |||
2003-06-02 | - section reorder | Jason McIntyre | |
- put whitespace before punctuation in macro | |||
2003-06-02 | - kill whitespace at EOL; | Jason McIntyre | |
2003-06-02 | section reorder; | Jason McIntyre | |
2003-06-02 | - sort an Xr to self | Jason McIntyre | |
- kill whitespace at EOL | |||
2003-06-02 | remove terms 3 and 4 of some of my licences | Theo de Raadt | |
2003-05-30 | Move env setup to its own function, works around compiler problem on sparc | Dale Rahn | |
LD_NORANDOM is now disabled on issetugid(). | |||
2003-05-30 | knf | Theo de Raadt | |
2003-05-30 | Unbreak tree for sparc, zapping ld_norandom strangely has a bad affect, | Dale Rahn | |
killing ld.so. | |||
2003-05-30 | Fix botch in tag array indexing. deal with 0 - DT_NUM, | Dale Rahn | |
DT_LOPROC - DT_LOPROC+DT_PROCNUM, and no other values. | |||
2003-05-30 | zap LD_NORANDOM on issetugid() binaries. | Dale Rahn | |
2003-05-30 | When loading a shared object or libraries dependant object, load them | Dale Rahn | |
in random order. This will reduce the possiblity of a buffer overflow being able to predict the addresss of useful code. Can be disabled with the LD_NORANDOM environment variable for debugging purposes. ok deraadt. | |||
2003-05-17 | strsep does not work that way. | Bob Beck | |
ok tedu@ | |||
2003-05-17 | Don't link with -lkrb -lkafs | Hans Insulander | |
2003-05-17 | Don't link with -lkrb -lkafs | Hans Insulander | |
2003-05-16 | This was using the wrong buffer, and wrong lengths. fix it from me and | Bob Beck | |
tedu, ok tedu@ | |||
2003-05-16 | use inet_net_pton, and fix probelem where spamd-setup would crash on a file | Bob Beck | |
consisting only of invalid input | |||
2003-05-14 | Remove krb4 support. | Magnus Holmberg | |
2003-05-14 | Remove krb4 support. | Magnus Holmberg | |
2003-05-14 | Remove krb4 support. | Magnus Holmberg | |
2003-05-14 | Get rid of libtelnet, it is compiled into the tree programs | Hans Insulander | |
(telnetd, telnet and tn3270) that use them instead. This gets rid of a really hairy dependency between telnet and libtelnet. ok millert@ | |||
2003-05-13 | Disable krb524. | Hans Insulander | |
2003-05-13 | krb4 bye bye | Hans Insulander | |
2003-05-13 | krb4 bye bye | Hans Insulander | |
2003-05-10 | removed unnecessary punctuation from SEE ALSO; | Jason McIntyre | |
2003-05-08 | Previously, ld.so would use a single page for mapping the hints file | Todd C. Miller | |
and then, if that was not big enough, map the rest of it contiguously. However, there is no guarantee that the address space after the first mmap has not already been used by something else. Instead, just fstat the file and map up to st_size. Also reorganized the code a tad and added some sanity checks for st_size. Problem tracked down by dhartmei@ and mickey@; drahn@ OK. | |||
2003-05-08 | squish a strcopy, ok krw@ | Bob Beck | |
2003-05-03 | these files all had >9 arguments to .Nd, causing the name description to be | Jason McIntyre | |
truncated. i wrapped them in double quotes to preserve the line. grep inspired by an -mdoc lesson from millert@ | |||
2003-04-28 | thread safe dlxxx func (for elf) part 2. This requires the latest | Marco S Hyman | |
ldfcn.h in /usr/include. "looks nice" tedu@ | |||
2003-04-28 | Change mquery() function call signature to be the same a mmap(). It | Dale Rahn | |
needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built, booted, and 'make includes' before building ld.so with this change. | |||
2003-04-28 | return from main | Theo de Raadt | |
2003-04-28 | I hate -Werror | Theo de Raadt | |
2003-04-27 | Duplicate include. Pointed out by andrushock at korovino dot net | Thierry Deval | |
2003-04-26 | %u expands to 11 chars; ok millert | Peter Valchev | |
2003-04-25 | backout mquery change, something broke when not combined with a different diff. | Dale Rahn | |
2003-04-25 | change mquery() function call signature to be the same a mmap(). It | Dale Rahn | |
needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built and installed before building ld.so with this change. ok millert@ tedu@ |