summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
2003-04-16Warn people that the value of the pointer passed in to asprinf()Todd C. Miller
is implementation-specific when we get ENOMEM but mention that *we* set it to NULL.
2003-04-14There are two related changes.Artur Grabowski
The first one is an mquery(2) syscall. It's for asking the VM system about where to map things. It will be used by ld.so, read the man page for details. The second change is related and is a centralization of uvm_map hint that all callers of uvm_map calculated. This will allow us to adjust this hint on architectures that have segments for non-exec mappings. deraadt@ drahn@ ok.
2003-04-12Change copyright to a less restrictive ISC-style license to encourageTodd C. Miller
people to bundle this code.
2003-04-12underfined -> undefined;Jason McIntyre
from Fabio Olive Leite;
2003-04-11bindresvport() does not automatically select another port if theTodd C. Miller
specified one is in use (closes PR 3192). While I am here, reorganize and clean up much of the wording. This now reads like a native speaker of English wrote it.
2003-04-10make the second example valid; ok millert@Jason Peel
2003-04-09makeing local table static saves some bytes; idea from mickey@Markus Friedl
2003-04-07Xr to strlcpy and strlcat more; ok millertTheo de Raadt
2003-04-06string handling; ok millertTheo de Raadt
2003-04-05fix typo, bad tdeval; pt out by emmf26@umr.eduPeter Valchev
2003-04-05add a size parameter to doabbr(), and convertThierry Deval
strcpy/sprintf -> strlcpy/snprintf. ok tedu@, krw@; help from deraadt@, millert@
2003-04-05sprintf -> snprintfThierry Deval
ok tedu@, hints deraadt@, millert@
2003-04-05strcpy/strcat -> strlcpy/strlcatThierry Deval
ok tedu@, hints by deraadt@ and millert@
2003-04-04strcat -> strlcatHans Insulander
ok deraadt@ tedu@ tdeval@
2003-04-03exceeds -> exceedes;Jason McIntyre
from Pedro Bastos (thanks)
2003-04-02Use snprintf instead of a strcpy(), strncat() and strcat() sequenceTodd C. Miller
deraadt@ OK
2003-04-02fifo -> FIFOJason McIntyre
ok millert@
2003-04-02nfs -> NFSJason McIntyre
2003-04-02use strlcpy(); assumes buf is at least ndigit bytes long which is asTodd C. Miller
safe as we can get. deraadt@ OK
2003-03-31Rewritten setuserpath() that is much clearer and uses strlcpy()Todd C. Miller
for added paranoia. tdeval@ and mpech@ OK
2003-03-28F_[GS]ETFL deal with file status flags, not descriptor status flags.Todd C. Miller
Closes PR 3172
2003-03-28Ip -> IP;Jason McIntyre
ok miod@
2003-03-18spelling typos/errorsDavid Krause
ok miod@ jmc@
2003-03-18duplicate words: and and, the theDavid Krause
ok miod@ jmc@
2003-03-18mention namelen in DESCRIPTIONTodd C. Miller
2003-03-18Do not capitalize "Indicates" as it does not start the sentenceTodd C. Miller
2003-03-17If hostname != NULL, hostname is not a numeric string, and AI_NUMERICHOSTJason Wright
is set, return EAI_NONAME like RFC2553 specifies. millert/itojun ok.
2003-03-17some small typos;Jason McIntyre
2003-03-14ANSI function headersTodd C. Miller
2003-03-13a few more strlcy; ok from beck & hoTheo de Raadt
2003-03-10add some notes about nosuid mounted file systems. suggested by deraadt@Ted Unangst
ok deraadt@ millert@
2003-03-10duplicate words and spelling fixes in commentsDavid Krause
ok miod@
2003-03-07signed/unsigned mixup. KAME PR 469 by Olivier Courtay.Jun-ichiro itojun Hagino
2003-03-06.Xr typos;Jason McIntyre
2003-03-06.Xr typos;Jason McIntyre
ok deraadt@
2003-03-06.Xr's;Jason McIntyre
typos in man page section ok deraadt@
2003-03-06Fix a pasto. (There is no ULLONG_MIN, for hopefully obvious reasons)Kjell Wooding
ok millert
2003-03-06date should be written formally: .Dd Month day, yearDavid Krause
ok henning@ jmc@
2003-03-04missing #include in SYNOPSIS, found by Daniel LucqHenning Brauer
ok millert@
2003-03-04strlcpy, check retval from sprintfJun-ichiro itojun Hagino
2003-03-04s/strncpy/strlcpy/Jun-ichiro itojun Hagino
2003-03-03in the handler, block signals handlers as soon as possible; ok miod millertTheo de Raadt
2003-03-01Provide real ieee fp*() functions; from NetBSD.Miod Vallat
ok millert@
2003-02-28typos;Jason McIntyre
reboot(2), sigaction(2): help and ok millert@
2003-02-28Use int32_t, not long since this deals with 32bit quantities.Todd C. Miller
Inspired by a change in NetBSD and reported by Jan Johansson.
2003-02-27missed in the math man page cleanupJason Wright
2003-02-27correctly check the return value of send(). fixes LOG_CONS from alwaysDan Harnett
logging to the console. ok millert@
2003-02-27typos;Jason McIntyre
2003-02-25typos;Jason McIntyre
intro(2): help deraadt@
2003-02-24Fix bogus inet_net_pton() translation example.Cedric Berger
ok henning@