summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
2001-08-29Last pieces needed to build libc on sparc64.Artur Grabowski
2001-08-29Bunch of necessary files from NetBSD.Artur Grabowski
2001-08-29more files from sparc.Artur Grabowski
2001-08-29bunch of files from sparc.Artur Grabowski
2001-08-29except ffs and strlen we use the generic functions (for now).Artur Grabowski
2001-08-29ffs from sparc and strlen from NetBSD.Artur Grabowski
(Don't ask me why our makefiles wouldn't accept using strlen.c)
2001-08-29syscall(), trivialArtur Grabowski
2001-08-29signal stuff from sparc, cleaned up.Artur Grabowski
2001-08-29setlogin from NetBSDArtur Grabowski
2001-08-29sbrk from NetBSDArtur Grabowski
2001-08-28fork from sparc. cleaned up.Artur Grabowski
2001-08-28exect from sparc.Artur Grabowski
2001-08-28Add SYSENTRY as on sparc. We'll need it later.Artur Grabowski
2001-08-28cerror. based on the same file from sparc, with cleanups.Artur Grabowski
2001-08-28brk from NetBSDArtur Grabowski
2001-08-28Duh. remove dumb debugging before commit next time.Artur Grabowski
2001-08-28Ovfork from sparc, cleaned up.Artur Grabowski
2001-08-28abs from NetBSDArtur Grabowski
2001-08-28{hton,ntoh}{s,l} from NetBSD.Artur Grabowski
2001-08-28SYS.h from NetBSD. Not fixed yet for libc_r.Artur Grabowski
2001-08-27Zero out entire FTS after allocating it instead of just zeroing outTodd C. Miller
a few fields by hand; Closes PR 2033
2001-08-25Typo - PR 2032Hugh Graham
2001-08-25Fix the __infinity constant on powerpc.Dale Rahn
from a7r@andern.org
2001-08-25Sync with sysctl(8): net.inet.tcp.slowhz is not changeable; bk@rt.fm. Wow,Aaron Campbell
reported on 04/26/2000, I am a slacker.
2001-08-23Fix the syscall wrappers name generation in, so that libc_r gets theMiod Vallat
correct entry points and programs can link to it. I would have commited this later, but fgs@ insisted.
2001-08-23Kill very odd use of __CONCAT: completely unneeded, obfuscated, andMarc Espie
not even ANSI (concatenation does not produce a valid token). Found out by heko@.
2001-08-23Add missing commas after auth_getitem and auth_setitem in NAME section.Todd C. Miller
Problem found by makewhatis -p / espie.
2001-08-23Add another EPERM condition to ERRORS: if a hard link is attempted for a fileAaron Campbell
that's flagged immutable or append-only, it will fail.
2001-08-23typo fix from NetBSD (groo@netbsd.org)Paul Janzen
2001-08-22"This section" and variants ==> 'The manual pages in section x'Heikki Korpela
in intro manual pages to hopefully confuse users a little bit less aaron@ ok
2001-08-20Powered by @mantoya.Mike Pechkin
o) fix bogus .Xr usage; millert@ ok.
2001-08-20cope with sa_len < sizeof(struct sockaddr).Jun-ichiro itojun Hagino
From: Patrik Lindergren <patrik@datacom.nu>
2001-08-20cope with negative return value from snprintf.Jun-ichiro itojun Hagino
2001-08-20use snprintf, not sprintf. sync with kameJun-ichiro itojun Hagino
2001-08-19remove unused bits and pieces.Brad Smith
-- Ok'd by art@
2001-08-18deal with -1 from snprintf, if it ever happensTheo de Raadt
2001-08-18be more careful with snprintf; millert okTheo de Raadt
2001-08-18Add a possibility to add a random offset to the stack on exec. This makesArtur Grabowski
it slightly harder to write generic buffer overflows. This doesn't really give any real security, but it raises the bar for script-kiddies and it's really cheap. The range of the random offsets is controlled by the sysctl kern.stackgap_random (must be a power of 2). This is disabled by default right now, but we'll set it to a reasonable value (1024?) soon, after some more testing.
2001-08-16Use calloc() to allocate response data. Be more careful when freeingHakan Olsson
memory. jakob@ ok.
2001-08-16Xr raise(3)Theo de Raadt
2001-08-15Typo fixes; andrew.hoerter@NeuStar.comAaron Campbell
2001-08-13Fix a bug with the %e flag introduced in a -Wall pass. The originalTodd C. Miller
code was in error but due to C precedence rules it didn't cause a problem.
2001-08-13Explicitly NUL terminate dst in strvis() and strvisx() in caseTodd C. Miller
we are passes an empty string. vis() and strnvis() were already OK. Based on patch by wilfried@openbsd.org
2001-08-12#(endif|else) foo is incorrect, make it #endif /* foo */Heikki Korpela
deraadt@ ok
2001-08-11Define INFTIM to -1, as appears everywhere. Talk about it in theFederico G. Schwindt
manpage; millert@ ok.
2001-08-08add CAVEATS section that talks about trust and the AD-bitJakob Schlyter
2001-08-07Do the memset only if tcgetattr() fails just in case the failedTodd C. Miller
tcgetattr() mucked with the passed in struct termios in some way.
2001-08-07Keep a verbatim copy of the old struct termios instead of usingTodd C. Miller
flags to keep track of what we changed. Print a newline if echo is off, even if we didn't turn it off ourselves. Fixes art's problem with a newline not being printed when piping to less.
2001-08-07typo.Peter Valchev
2001-08-07KNF; and i bonked jakob in the head for it too, with a plastic bottle of cokeTheo de Raadt