summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2002-07-29Replace atexit handler. mprotect() the pages so an attempt to modify theDaniel Hartmeier
function pointers from the outside will segfault. Idea, hints and feedback from deraadt. ok deraadt.
2002-07-29query ip6.arpa then ip6.int for IPv6 reverse lookup. follows RFC3152.Jun-ichiro itojun Hagino
(need some string-manipulation cleanup near here)
2002-07-26Obey LDSTATIC for the helper binaries.Artur Grabowski
2002-07-25more snprintf and strlcpy; help from millertTheo de Raadt
2002-07-25kill more strcpyTheo de Raadt
2002-07-25cleanupTheo de Raadt
2002-07-25real vforkMichael Shalayeff
2002-07-24add *asprintfTheo de Raadt
2002-07-24Document that *printf can return -1 on error. This includes snprintf(),Todd C. Miller
though our implementation never does this.
2002-07-24 o Mention that interval timers are cleared (FreeBSD)Todd C. Miller
o Mention that _exit(2) should be used to avoid problems with stdio buffers and atexit(3) o Add STANDARDS section OK deraadt@
2002-07-24Convert to ANSI function headers and make 'ch' argument int, not char.Todd C. Miller
Noticed by deraadt@
2002-07-24have _THREAD_PRIVATE_MUTEX for DNS/YP/hosts lookup.Jun-ichiro itojun Hagino
2002-07-22Remove some dead ifdefs to make the code more readable.Artur Grabowski
2002-07-21link evtimer_* now, not timeout_* since it was changed for man pages.Eric Jackson
2002-07-20correct check for strchr() failure in EXAMPLE; from pinskia@physics.uc.eduPeter Valchev
2002-07-20ansiTheo de Raadt
2002-07-19remove #define crypt DES_crypt; ok deraadt@Markus Friedl
2002-07-18typoTodd C. Miller
2002-07-18use /bin/sh for bourne shell scripts (instead of the $SHELL env var).Markus Friedl
ok deraadt@
2002-07-16correct memset arguments; from Moritz Jodeit <moritz@jodeit.org> via PR/2822.Federico G. Schwindt
2002-07-16ansiTheo de Raadt
2002-07-15suppress ctags warnings; millert@ okMichael Shalayeff
2002-07-14indent, and double free fix; millert okTheo de Raadt
2002-07-14Fix an oversight in revision 1.9. ld_entry was set in one more spot.Artur Grabowski
2002-07-13KNFTheo de Raadt
2002-07-12there is no function called libalpha(), so whack itTheo de Raadt
2002-07-12install all man pages on all archTheo de Raadt
2002-07-12change timeout_ API to evtimer_ API; avoiding clashes with kernel includeNiels Provos
files. okay mickey@
2002-07-12Add a missing check for fts_alloc() returning NULL; Chad LoderTodd C. Miller
2002-07-11cleanTheo de Raadt
2002-07-11Disable support for the other hardware accelerators. No need to crank theTheo de Raadt
major because these interfaces are really not exported (or used).
2002-07-11Back out revision 1.3; we return EWOULDBLOCK on lock failure, not EAGAIN.Todd C. Miller
2002-07-11We need to map the data segment of ld.so with PROT_EXEC for the GOT.Artur Grabowski
This is in preparation for actually honoring exec protection in sparc pmap. NOTICE! You really want to rebuild the whole userland with this change before the kernel fix goes in. Otherwise all shared binaries will dump core.
2002-07-10'sez' is not an english word; ok deraadt@Jason Peel
2002-07-10Make EV_PERSIST work on EV_READ and EV_WRITE events.Artur Grabowski
provos@ ok.
2002-07-09more error checking of memory allocation, from clodder@acm.org. okay deraadt@Niels Provos
2002-07-08we can live very well w/ MI ffs()Michael Shalayeff
2002-07-08Use qsort() instead of mergesort() since the latter can fail dueTodd C. Miller
to malloc(). opendir() requires a stable sort so we rig the compare routine to never return 0. From Lars J. Buitinck
2002-07-08offload the arguments from the stack before performingMichael Shalayeff
the copying, initial idea is from freebsd (not fully implemented there, apparently). this also makes bcopy/memcpy a tiny little bit faster.
2002-07-07Add a port of FreeBSD/alpha's libio as libalpha. This library enableMatthieu Herrb
access to devices I/O ports from userland. Only BWX machines supported for now. Added a man page. Ok deraadt@, miod@.
2002-07-07enviroment -> environmentJan-Uwe Finck
2002-07-06Remove kernel support for NTP. ok deraadt@ and tholo@Thomas Nordin
2002-07-06KNFTheo de Raadt
2002-07-06KNFTheo de Raadt
2002-07-06Add some missing checks for malloc() returning NULL.Todd C. Miller
Noticed by Lars J. Buitinck. deraadt@ OK
2002-07-06cope better if realloc fails; better fix than cloder@acm.orgTheo de Raadt
2002-07-05add sys/time.h to SYNOPSIS; from bk@rt.fmNiels Provos
2002-07-05more refinementTheo de Raadt
2002-07-02missing priority argument in example; ok millert@Kevin Steves
2002-07-01more type pedantJun-ichiro itojun Hagino