summaryrefslogtreecommitdiff
path: root/libexec
AgeCommit message (Collapse)Author
2003-06-03Remove promotion clause; OK w/ deraadt@Todd C. Miller
2003-06-03Use an ISC-tyle license for all my code; it is simpler and more permissive.Todd C. Miller
2003-06-03kill clause 3 and 4 from several of my copyrights, cleanup.Dale Rahn
2003-06-03license cleaning.Artur Grabowski
2003-06-02remove clause 3 and 4. -mojMats O Jansson
2003-06-02nuke clause 3 & 4Jason Wright
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-06-02section reorder;Jason McIntyre
2003-06-02section reorder;Jason McIntyre
2003-06-02- kill whitespace at EOLJason McIntyre
- removed empty ENVIRONMENT section
2003-06-02section reorder;Jason McIntyre
2003-06-02- remove .Pp's before .ShJason McIntyre
- correct .Xr - .Ox instead of OpenBSD - whitespace between punctuation
2003-06-02An/Aq for author;Jason McIntyre
2003-06-02- section reorderJason McIntyre
- whitespace at EOL
2003-06-02- section reorderJason McIntyre
- An/Aq for author
2003-06-02- section reorderJason McIntyre
- put whitespace before punctuation in macro
2003-06-02- kill whitespace at EOL;Jason McIntyre
2003-06-02section reorder;Jason McIntyre
2003-06-02- sort an Xr to selfJason McIntyre
- kill whitespace at EOL
2003-06-02remove terms 3 and 4 of some of my licencesTheo de Raadt
2003-05-30Move env setup to its own function, works around compiler problem on sparcDale Rahn
LD_NORANDOM is now disabled on issetugid().
2003-05-30knfTheo de Raadt
2003-05-30Unbreak tree for sparc, zapping ld_norandom strangely has a bad affect,Dale Rahn
killing ld.so.
2003-05-30Fix botch in tag array indexing. deal with 0 - DT_NUM,Dale Rahn
DT_LOPROC - DT_LOPROC+DT_PROCNUM, and no other values.
2003-05-30zap LD_NORANDOM on issetugid() binaries.Dale Rahn
2003-05-30When loading a shared object or libraries dependant object, load themDale 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-17strsep does not work that way.Bob Beck
ok tedu@
2003-05-17Don't link with -lkrb -lkafsHans Insulander
2003-05-17Don't link with -lkrb -lkafsHans Insulander
2003-05-16This was using the wrong buffer, and wrong lengths. fix it from me andBob Beck
tedu, ok tedu@
2003-05-16use inet_net_pton, and fix probelem where spamd-setup would crash on a fileBob Beck
consisting only of invalid input
2003-05-14Remove krb4 support.Magnus Holmberg
2003-05-14Remove krb4 support.Magnus Holmberg
2003-05-14Remove krb4 support.Magnus Holmberg
2003-05-14Get rid of libtelnet, it is compiled into the tree programsHans 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-13Disable krb524.Hans Insulander
2003-05-13krb4 bye byeHans Insulander
2003-05-13krb4 bye byeHans Insulander
2003-05-10removed unnecessary punctuation from SEE ALSO;Jason McIntyre
2003-05-08Previously, ld.so would use a single page for mapping the hints fileTodd 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-08squish a strcopy, ok krw@Bob Beck
2003-05-03these files all had >9 arguments to .Nd, causing the name description to beJason McIntyre
truncated. i wrapped them in double quotes to preserve the line. grep inspired by an -mdoc lesson from millert@
2003-04-28thread safe dlxxx func (for elf) part 2. This requires the latestMarco S Hyman
ldfcn.h in /usr/include. "looks nice" tedu@
2003-04-28Change mquery() function call signature to be the same a mmap(). ItDale 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-28return from mainTheo de Raadt
2003-04-28I hate -WerrorTheo de Raadt
2003-04-27Duplicate include. Pointed out by andrushock at korovino dot netThierry Deval
2003-04-26%u expands to 11 chars; ok millertPeter Valchev
2003-04-25backout mquery change, something broke when not combined with a different diff.Dale Rahn
2003-04-25change mquery() function call signature to be the same a mmap(). ItDale 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@