Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-04-24 | proper include files; ath@algonet.se | Theo de Raadt | |
2000-04-21 | Change kernel-only open flag FNOSYMLINK to userland-visible O_NOFOLLOW; | Todd C. Miller | |
adapated from FreeBSD. Also change O_FSYNC to the more standard O_SYNC and document it. open(2) needs some real examples for proper usage, to come later. | |||
2000-04-21 | Don't hyphenate the words {left|right}most. | Aaron Campbell | |
2000-04-21 | Add ERRORS section (the strdup(3) function may fail and set errno to any of the | Aaron Campbell | |
errors specified by the library routine malloc(3)). | |||
2000-04-21 | Check return value of strdup(3) for NULL in example code (duh). | Aaron Campbell | |
2000-04-21 | Flesh out libc string function man pages. | Aaron Campbell | |
2000-04-20 | Flesh out stdlib function man pages. | Aaron Campbell | |
2000-04-20 | bump because of p{read,write}{,v} | Theo de Raadt | |
2000-04-20 | p{read,write}{,v} man pages | Theo de Raadt | |
2000-04-20 | - Formatting repairs and standardizations. | Aaron Campbell | |
- s/MESSAGES/DIAGNOSTICS/, and put message descriptions in a nice list. - Talk more about how using malloc() in signal handlers is bad. | |||
2000-04-20 | Flesh out all of the stdio man pages. | Aaron Campbell | |
2000-04-18 | Repairs, mostly removing hard sentence breaks. | Aaron Campbell | |
2000-04-18 | Repairs. | Aaron Campbell | |
2000-04-16 | sync with ftp://elsie.nci.nih.gov/pub/tzcode2000c.tar.gz, millert@ ok | David Leonard | |
2000-04-16 | avoid misunderstanding in history portion, okay'ed by aaron. | Jun-ichiro itojun Hagino | |
may need english check:-) (getifaddrs.c is straight import from bsdi4) | |||
2000-04-15 | - For consistency, `super-user' -> `superuser' in all cases. | Aaron Campbell | |
- Some punctuation fixes. - Some `id' -> `ID'. | |||
2000-04-15 | Mostly punctuation fixes. | Aaron Campbell | |
2000-04-12 | Trailing whitespace begone! | Aaron Campbell | |
2000-04-12 | list 'i' only once | Hugh Graham | |
2000-04-10 | missing THREAD_UNLOCK; netch@segfault.kiev.ua | Theo de Raadt | |
2000-04-10 | document EWOULDBLOCK; freebsd | Theo de Raadt | |
2000-04-05 | Clarify _SC_ARG_MAX | Todd C. Miller | |
2000-04-04 | Fix the leak for real (that's what I get for hacking when i can't sleep). | Todd C. Miller | |
2000-04-04 | Fix an fd leak if the read from /dev/arandom fails. Pointed out by | Todd C. Miller | |
Markus Friedl. | |||
2000-04-04 | MLINK srandomdev | Todd C. Miller | |
2000-04-03 | Add srandomdev() from FreeBSD for use by sendmail and others. | Todd C. Miller | |
2000-04-02 | First appeared in OpenBSD 2.1 | Todd C. Miller | |
2000-03-31 | Tell how to set the localtime link here too. | Todd C. Miller | |
2000-03-31 | Add a pointer to zic so new users can figure out how to set the | Todd C. Miller | |
timezone. The obvious thing to do is 'man timezone' so hopefully folks will be able to get the info they need. | |||
2000-03-30 | Reference /etc/localtime in FILES section. | Todd C. Miller | |
2000-03-30 | Try a hard link before a soft one since we want hard links in | Todd C. Miller | |
the zoneinfo dir. | |||
2000-03-30 | Make 'zic -l' actually work. I guess we all just do the symlink | Todd C. Miller | |
by hand and thus never noticed. | |||
2000-03-28 | tzfile(5) not tzfil(5) | Theo de Raadt | |
2000-03-28 | need more links for MD[45]Transform | Theo de Raadt | |
2000-03-28 | typo | Theo de Raadt | |
2000-03-28 | sigblock.3 MLINK | Theo de Raadt | |
2000-03-28 | fseeko.3 and ftello.3 | Theo de Raadt | |
2000-03-28 | Expose MDXTransform functions to be consistent with sha1 and rmd160. | Todd C. Miller | |
2000-03-24 | Make f_bsize signed. Having it unsigned causes surprising (and unwanted) | Todd C. Miller | |
type coercions. With this fixed I can back out the hack in df. | |||
2000-03-24 | Mention that FNM_LEADING_DIR and FNM_CASEFOLD are extensions. | Todd C. Miller | |
I got bit by this recently in my own code... | |||
2000-03-23 | *_r MLINKS | David Leonard | |
2000-03-23 | oops, return values are int | David Leonard | |
2000-03-23 | asctime_r, ctime_r, gmtime_r, localtime_r. ok aaron@ | David Leonard | |
2000-03-23 | readdir_r. ok aaron@ | David Leonard | |
2000-03-23 | getgrnam_r, getgrgid_r. ok aaron@ | David Leonard | |
2000-03-23 | Add #ifdef __STDC__ around the rangematch function header to avoid | Todd C. Miller | |
promotion of test to int, thus violating the prototype. Gcc handles this gracefully but more std ANSI compilers will complain. | |||
2000-03-16 | workaround against name servers which return NXDOMAIN/SERVFAIL on IPv4 only | Jun-ichiro itojun Hagino | |
node (the srever server should return acount = 0 without error). NetBSD PR: 9621 | |||
2000-03-15 | implimented -> implemented | Todd T. Fries | |
2000-03-14 | Suffix "i.e." and "e.g." with a comma. Just another really picky man page | Aaron Campbell | |
commit, as we want our documentation to be as consistently formatted as possible (it's getting there :-)). | |||
2000-03-13 | fix error handling in yp case. | Jun-ichiro itojun Hagino | |