summaryrefslogtreecommitdiff
path: root/lib/libc/gen
AgeCommit message (Collapse)Author
2000-03-23*_r MLINKSDavid Leonard
2000-03-23oops, return values are intDavid Leonard
2000-03-23readdir_r. ok aaron@David Leonard
2000-03-23getgrnam_r, getgrgid_r. ok aaron@David Leonard
2000-03-23Add #ifdef __STDC__ around the rangematch function header to avoidTodd C. Miller
promotion of test to int, thus violating the prototype. Gcc handles this gracefully but more std ANSI compilers will complain.
2000-03-14Suffix "i.e." and "e.g." with a comma. Just another really picky man pageAaron Campbell
commit, as we want our documentation to be as consistently formatted as possible (it's getting there :-)).
2000-03-06Do not leave `(' characters dangling at the end of lines; instead, use theAaron Campbell
appropriate mdoc macros to handle these cases.
2000-03-04In Unix land we prefer "whitespace" to "white space" or "white-space". AtAaron Campbell
least, this is the impression I get from looking at a lot of Perl docs.
2000-01-29use alloca() instead of malloc, for vfork safetyTheo de Raadt
2000-01-22Use .Va macro when referring to the global variable errno.Aaron Campbell
2000-01-22Use .Va.Aaron Campbell
2000-01-21Rename ip4.allow to ipip.allowAngelos D. Keromytis
2000-01-19more warning about net.inet6.ip6.forwardingJun-ichiro itojun Hagino
2000-01-13include string.h to get strlen() prototypeTodd C. Miller
2000-01-11Document the new ipsec sysctl variables.Angelos D. Keromytis
2000-01-10Document net.inet.ip.ipsec-invalid-lifeAngelos D. Keromytis
2000-01-09Add ipsec-acl description, and remove bogus PF_ENCAP entry (encdebugAngelos D. Keromytis
is under ip, not under encap).
2000-01-08fix sizeof's when aliasing reentrant structures.David Leonard
(this caused group name lookups to fail)
2000-01-07Document gre.allow and mobileip.allowAngelos D. Keromytis
2000-01-06_THREAD_PRIVATE_* macros changedDavid Leonard
2000-01-06use thread-specific storage for the members listDavid Leonard
2000-01-06wording fix in net.inet6.icmp6.errratelim.Jun-ichiro itojun Hagino
2000-01-06add missing variables under net.inet6.ip6.Jun-ichiro itojun Hagino
2000-01-02Try to reopen socket if send fails. (perhaps syslogd restarted)Hugh Graham
Adapted from FreeBSD (N.B. NetBSD); millert@ OK.
2000-01-02add description for PF_INET6 (net.inet6.*).Jun-ichiro itojun Hagino
1999-12-30VM_SWAPENCRYPTNiels Provos
1999-12-08Don't use stdio since we don't want the password to end up in stdioTodd C. Miller
buffers that may not get zeroed.
1999-11-17Add missing MLINKsTodd C. Miller
1999-10-28Add ip4.allow and etherip.allow entries.Angelos D. Keromytis
1999-10-07document more tcp specific sysctls, mostly netbsd.Niels Provos
1999-10-06Make this man page much clearer.Aaron Campbell
1999-10-03put back FTS_CHDIRROOT until next library major number crankTodd C. Miller
1999-10-03kill FTS_CHDIRROOT flag, it is broken beyond repair and no longer usedTodd C. Miller
1999-10-03Fix multiple problems in the FTS_NOCHDIR case (mycroft@netbsd.org):Todd C. Miller
* There was an off-by-one error that caused the addition of a NUL or slash in fts_build() to overwrite other memory. * After fts_palloc(), we need to reset `cp' so that it points to the new path name buffer; otherwise the addition of the file name before calling fts_stat() could lose. Also, fix stupidity in the fts_palloc() interface. We don't want N bytes more than the current buffer size; we want N bytes more than the current length. Just pass in the new size, since we can't figure it out easily here. fts_padjust() was doing more work than it needed to. Based on changes from mycroft@netbsd.org. Check for fts_pathlen oflow in two places. Done before I saw the NetBSD change (and last I checked they only did one of the checks). In the case of wrap, return ENAMETOOLONG.
1999-09-27Formatting and grammar.Aaron Campbell
1999-09-26`nl' means something special to mdoc, so it must be escaped it meant literally.Aaron Campbell
1999-09-23Typo fixes.Alex Feldman
1999-09-22Add a RETURN VALUES section; fgsch@Aaron Campbell
1999-09-16use writev() where possibleTheo de Raadt
1999-09-15redo master.passwd.byname check if either the uid or euid changes, this wasTheo de Raadt
a case of bad caching; peter and I
1999-09-14indentTheo de Raadt
1999-09-03Use strtol() and strtoul() instead of atoi(). This allows us to catchTodd C. Miller
errors reasonably and deal correctly with unsigned quantities.
1999-09-02insert missing commaAaron Campbell
1999-09-01string.h for memcpy protoTheo de Raadt
1999-08-31Consistify naming of RETURN VALUES section.Aaron Campbell
1999-08-27fts_pathlen and fts_namelen are u_short, not shortTodd C. Miller
1999-08-25Don't need to include sys/ucred.hTodd C. Miller
1999-08-17More <sys/file.h> vs. <fcntl.h> and open() flags fixes.Todd C. Miller
1999-08-16doc isinff() and isnanf()Theo de Raadt
1999-08-16If the FTS_NOCHDIR flag is set and the final directory is empty,Todd C. Miller
the trailing '/' would not be chopped; pho@freebsd.org