summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
2000-12-04Silently convert s/key -> skey in login_getstyle(). A bit of a hackTodd C. Miller
but OpenBSD folks are more used to saying s/key.
2000-11-29Don't print an extra newline after reading passphrase if echo was notTodd C. Miller
turned off since we already printed one from the user.
2000-11-26Properly implement errno handling for the threaded libc (libc_r)Dale Rahn
The powerpc specific code was previously handling system call errors as if kernel threads existed (currently only userlang threads are modeled). Thus if multiple threads existed in a process, the process would not get the correct errno from a system call. This would cause _many_ tests to fail. Fixing this causes a number of the tests in libc_r/TEST to now work, that did not before, however a few still fail.
2000-11-24comment fix; strlcat returns strlen(initial dst) + strlen(src).Jun-ichiro itojun Hagino
2000-11-24ifm_data is avilable on {net,open,free}bsd. sync with kame.Jun-ichiro itojun Hagino
2000-11-23zero pw_passwd before freeingTodd C. Miller
2000-11-22avoid double fclose()Theo de Raadt
2000-11-22use strlcpy in the exampleTheo de Raadt
2000-11-21updateNiels Provos
2000-11-21Remove needless memset() from last commit.Todd C. Miller
2000-11-21Deal with va_list not being a pointer; this should be re-evaluated.Todd C. Miller
Fixes a compile problem on alpha.
2000-11-21prevent type overflow; dzerkel@columbus.rr.comTheo de Raadt
2000-11-21crank minor numberTodd C. Miller
2000-11-21Add references to new files.Todd C. Miller
2000-11-21BSD authentication routines from BSDI. Presently this is not used butTodd C. Miller
the login_* helper programs and other support will be committed in the near future.
2000-11-21Add pw_dup(3), a function to copy 'struct passwd'. It is allocated asTodd C. Miller
a single chunk with the strings pointing elsewhere in the buffer so a simple free() of the struct passwd * is all that is needed to decallocate.
2000-11-21Add readpasasphrase(3), a more flexible getpass(3) replacement.Todd C. Miller
getpass(3) is now implemented in terms of readpasasphrase(3).
2000-11-21Add strnvis(3) -- a length-bounded version of strvis(3) with a returnTodd C. Miller
value similar to snprintf(3) and strlcpy(3).
2000-11-18OpenBSD does not support non-standard mdoc macros like .Lb.Aaron Campbell
2000-11-17remove non-existing manual references.Niels Provos
2000-11-16"of", not "on" (from Henric Jungheim)Angelos D. Keromytis
2000-11-16forgot manpageNiels Provos
2000-11-16kqueue and kevent system callsNiels Provos
2000-11-15do not open fifos with O_RDWR, either use O_RDONLY or O_WRONLY. okay aaron@Niels Provos
2000-11-10seperate -> separate, okay aaron@Niels Provos
2000-11-09typoTheo de Raadt
2000-11-06The constant's name is MAXPATHLEN, not MAXPATHNAMELEN; closes PR/1491.Aaron Campbell
From ianm@kashmir.cit.nepean.uws.edu.au.
2000-10-25DBM_READONLY -> DBM_RDONLY; dugsong@Aaron Campbell
2000-10-25Clarify; gluk@ptci.ruAaron Campbell
2000-10-23Document that the string returned by strerror(3) contains a maximum ofAaron Campbell
NL_TEXTMAX characters.
2000-10-19Do not suggest that people use getpid(2) for generating temp file name; referAaron Campbell
them to mkstemp(3) instead.
2000-10-18fdopen(3) takes two args, not one; spotted by fries@. Also, move the CAVEATSAaron Campbell
section to the end like most man pages.
2000-10-18Another round of man page cleanup, this time to remove more hard sentenceAaron Campbell
breaks and getting rid of short lines, making these files easier to work with.
2000-10-17damn it, i have had it with this untested weak shitTheo de Raadt
2000-10-16re-add weak sparc support; d@Theo de Raadt
2000-10-14oops; sigh@kuzirabekon.econ.nagasaki-u.ac.jpTheo de Raadt
2000-10-14document net.inet.tcp.rstppslimit.Jun-ichiro itojun Hagino
2000-10-12MAP_FAILED, not -1.Artur Grabowski
2000-10-11back out weak symbols; deraadt@David Leonard
2000-10-10mention icmp{,6}.errppslimitJun-ichiro itojun Hagino
2000-10-10Fresh infinity from NetBSD.Hugh Graham
2000-10-06weaken syscall symbols in libc by defaultDavid Leonard
2000-10-06Add a CAVEATS section to warn programmers that shell meta-characters willAaron Campbell
be passed to the command interpreter.
2000-10-04use weak symbols in sparc's libcDavid Leonard
2000-10-04teach tags about SYSENTRYDavid Leonard
2000-10-03bt_open.c: parenthesize - and & proper (from freebsd);Michael Shalayeff
hash_bigkey.c: fix NULL dereference exposed on big bsize values; hash_buf.c: fix DEBUG1 cases to make them print, not crash; hash.3: document real default values for bsize and ffactor.
2000-09-30Make it obvious that open(2) returns ELOOP if O_NOFOLLOW was specifiedTodd C. Miller
and the target is a symlink.
2000-09-25fix off-by-1 error.Jun-ichiro itojun Hagino
From: Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
2000-09-25doc that O_TRUNC needs a write modeTheo de Raadt
2000-09-25document pmtu discovery, from NetBSDNiels Provos