summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
1999-11-09Implement strtok_r.Artur Grabowski
1999-10-28Add ip4.allow and etherip.allow entries.Angelos D. Keromytis
1999-10-08SYNOPSIS needs #include <sys/types.h>Marc Espie
1999-10-07- Xr acct(2) from accton(8) and vice-versa.Aaron Campbell
- Add a FILES section to accton(8) indicating the default accounting file. - From pjanzen@
1999-10-07document more tcp specific sysctls, mostly netbsd.Niels Provos
1999-10-06- let cryptographic checksums refer to each otherMarc Espie
- avoid .Xref to one's own manpage
1999-10-06Make this man page much clearer.Aaron Campbell
1999-10-05specifed -> specifiedAaron 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-28Nail down semantics in case of failure.Marc Espie
example for fdopen.
1999-09-28Set j = i after arc4random key schedule to be more like arc4 stream cipher;Theo de Raadt
from conversations between various people
1999-09-27Correct buffer size.Alex Feldman
1999-09-27Formatting and grammar.Aaron Campbell
1999-09-27Remove an unwanted `.'.Aaron Campbell
1999-09-26.Nm -> .FnMarc Espie
1999-09-26Proper coding idioms.Marc Espie
[yes, there ARE some systems where read and write >SSIZE_MAX work, and physicists use those features to write huge files in one swoop]
1999-09-26Remove extraneous commaMarc Espie
1999-09-26`may return following error' => `may return the following error'Marc Espie
`may return following errors' => `may return one of the following errors'
1999-09-26`nl' means something special to mdoc, so it must be escaped it meant literally.Aaron Campbell
1999-09-25grammarPaul Janzen
1999-09-23Typo fixes.Alex Feldman
1999-09-22Some misc fixes, one from fgsch@Aaron Campbell
1999-09-22Add a RETURN VALUES section; fgsch@Aaron Campbell
1999-09-22BUGS->CAVEATSMarc Espie
Warn against brain-dead ProFTPd hole.
1999-09-21index/rindex as deprecated synonyms to strchr/strrchr.Marc Espie
1999-09-21It's a good idea to check the return value of malloc() in example code.Aaron Campbell
1999-09-16adopt to the new frame frameworkMichael Shalayeff
1999-09-16use writev() where possibleTheo de Raadt
1999-09-15Add CAVEATS sections.Aaron Campbell
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-14Tidying and spellingPaul Janzen
1999-09-14Supply examples and discuss limitations.Paul Janzen
1999-09-14this is the bcopy we useMichael Shalayeff
1999-09-14some basic frameworkMichael Shalayeff
1999-09-13use stronger language when pointing people at strtol()Theo de Raadt
1999-09-07typoMarc Espie
1999-09-06succesful -> successfulAaron Campbell
1999-09-04Using .Li inside a .Bd -literal block messes up the fonts thereafter;Paul Janzen
.Li ... -> \&...
1999-09-03typoTheo de Raadt
1999-09-03sizeof("string") includes 0 byte; aazubel@tatu.cnba.uba.arTheo 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-26add an inner xor to make prediction attacks against the ids harder, dueNiels Provos
to an attack pointed out by David Wagner.
1999-08-25Don't need to include sys/ucred.hTodd C. Miller