Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-07-10 | put another YP-only piece inside the ifdef | Theo de Raadt | |
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-07-09 | a first pass at -Wall | Theo de Raadt | |
2001-07-09 | Install getpeereid(2) manpage. | Federico G. Schwindt | |
2001-07-05 | IPComp support. angelos@ ok. | Jean-Jacques Bernard-Gundol | |
2001-07-04 | fix unused code path; karls@inet.no | Theo de Raadt | |
2001-07-02 | Convert warn/warnx -> _warn/_warnx | Todd C. Miller | |
Should not really spew to stderr from libc but right now there is no other way to get a sensible error message to the user. | |||
2001-06-30 | missing freeaddrinfo(). PR 1907 | Jun-ichiro itojun Hagino | |
2001-06-28 | fix one-byte overflows | Paul Janzen | |
2001-06-27 | typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@ | Damien Miller | |
2001-06-27 | Use .Pp, not a blank line. | Aaron Campbell | |
2001-06-27 | Make the functions (which get linked in if <ctype.h> isn't #included) behave | Paul Janzen | |
correctly. Also, don't let them segfault. | |||
2001-06-27 | use strlcpy vs strncpy+a[len-1]='\0'. millert@ ok. | lebel | |
2001-06-26 | crank minor number, for new getpeereid() syscall | Dug Song | |
2001-06-26 | implement djb's getpeereid(2), to allow local-domain servers to determine ↵ | Dug Song | |
client credentials. mostly from superscript.com. deraadt@ ok | |||
2001-06-25 | Refer to siginterrupt(3) rather than to a nonexistant part of intro(2) | Paul Janzen | |
2001-06-25 | Document that behaviour is undefined if the argument isn't EOF or an unsigned | Paul Janzen | |
char. | |||
2001-06-25 | grammar | Paul Janzen | |
2001-06-24 | When splitting instance from username, treat '/' as a separator as | Todd C. Miller | |
well (for Kerb5). | |||
2001-06-23 | document ll, depreciate q | Niels Provos | |
2001-06-23 | more .%A handling; bk@rt.fm | Theo de Raadt | |
2001-06-23 | ok, tmac is now fixed | Theo de Raadt | |
2001-06-23 | join .%A entries; most by bk@rt.fm | Theo de Raadt | |
2001-06-18 | Clarify that if strlcat() does not find a NUL within siz byte it | Todd C. Miller | |
will not NUL terminate either. | |||
2001-06-18 | Add new cgetusedb() function to toggle reading of .db files in getcap(3). | Todd C. Miller | |
Needed for cap_mkdb to really DRT when given several input files or an output file with a different name from the input file. cvs: ---------------------------------------------------------------------- | |||
2001-06-18 | compile libc with -Werror since any warnings gcc produces without extra ↵ | Todd C. Miller | |
-Wfoo directives is something we care about | |||
2001-06-18 | Fix a char vs. u_char problem I introduced in the last commit. | Todd C. Miller | |
2001-06-16 | Disable the STATUS character when reading passwords -- people seem to | Todd C. Miller | |
expect to be able to use ^T in a password. | |||
2001-06-16 | sysarch() takes a void * | Theo de Raadt | |
2001-06-14 | Fix a buf oflow in EXAMPLES code; millert@ ok | Aaron Campbell | |
2001-06-13 | SYSLEAF, not LEAF. shared libc_r builds now on alpha. | Artur Grabowski | |
2001-06-13 | pretty | Artur Grabowski | |
2001-06-13 | "#endif _THREAD_SAFE" is not legal | Artur Grabowski | |
2001-06-12 | on openbsd, NI_MAXHOST value is different from RFC2553. PR 1870 | Jun-ichiro itojun Hagino | |
2001-06-11 | support EDNS0 (RFC2671) buffer size notification on DNS queries. | Jun-ichiro itojun Hagino | |
"options edns0" in /etc/resolv.conf will enable the behavior. no behavior change if you don't have the line. see resolv.conf(5) for more details. EDNS0 is useful for avoiding TCP DNS queries/replies on larger DNS responses. also, draft-ietf-dnsext-message-size-* plans to mandate EDNS0 support for DNS clients that support IPv6 transport. | |||
2001-06-09 | remove confusing comparison with srand (it does not return the old seed) | assar | |
use .Sh AUTHORS and .An for author | |||
2001-06-05 | Fix pasto; kleink@netbsd.org | Paul Janzen | |
2001-06-05 | License clarification from David Mazieres, ok deraadt@ | Peter Valchev | |
2001-06-05 | repair copyright notices for NRL & cmetz; cmetz | Theo de Raadt | |
2001-06-04 | oh, just include machine/asm.h | Michael Shalayeff | |
2001-06-04 | entrieness cleanup | Michael Shalayeff | |
2001-06-03 | Don't bail out early for users w/o passwd file entries since we may | Todd C. Miller | |
want to cons up a fake prompt for challenge/response auth methods. markus@ OK'd. | |||
2001-06-03 | KERN_NPROCS documentation | Angelos D. Keromytis | |
2001-06-03 | struct diskstats now | Angelos D. Keromytis | |
2001-05-31 | Fix another case of CHDIR("..") pointed out by Bruce Evans | Todd C. Miller | |
<bde@zeta.org.au>. Instead of fixing these inline I've modified my fts_safe_changedir() function so it can be used in this case too. Thanks also to Kris Kennaway <kris@obsecurity.org>. | |||
2001-05-31 | knf | Theo de Raadt | |
2001-05-30 | When changing directory to '..', verify that we really are where | Todd C. Miller | |
we should be. This is similar to the old fts bug but happens when popping out of directories, as opposed to descending into them. Patch based on one by Kris Kennaway <kris@obsecurity.org>. Issue reported by Nick Cleaton <nick@cleaton.net> | |||
2001-05-30 | Complain via syslog if login.conf does not exist. With the BSD | Todd C. Miller | |
authentication stuff in you really want to know if this file doesn't exist. The last two releases have shipped with /etc/login.conf so there's no excuse not to have it, other than an error. | |||
2001-05-29 | mention setusercontext() return value | Todd C. Miller | |
2001-05-20 | Correct interval notation (<= vs. <); tadayuki@mediaone.net | Todd C. Miller | |