Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-08-18 | ipsec-acl default changed to 1; confirmed by jason@ | Federico G. Schwindt | |
2000-08-13 | strings are NUL-terminated, not NULL-terminated | Theo de Raadt | |
2000-08-12 | Mention that mknod(2) will return EINVAL when chroot(2)'d. | Todd C. Miller | |
2000-08-11 | Fix lexer bug (bad handling of escaped double-quote). | Angelos D. Keromytis | |
2000-08-09 | document that the current implementation is not thread-safe. sync with kame. | Jun-ichiro itojun Hagino | |
From: "Greg Thompson" <johnnyteardrop@hotmail.com> | |||
2000-08-09 | More of the same. | Aaron Campbell | |
2000-08-09 | For man pages that describe multiple functions, split the .Nm arguments | Aaron Campbell | |
onto separate lines in the NAME section. | |||
2000-08-09 | Insert missing period. | Aaron Campbell | |
2000-08-09 | Remove trailing blank lines. | Aaron Campbell | |
2000-08-07 | quiet warning | Brad Smith | |
2000-08-07 | remove test_pw until we get getpwnam_r() back | Brad Smith | |
2000-08-07 | this obviously wasn't tested, fix check. We don't even build libpthread by | Brad Smith | |
default on i386 yet. | |||
2000-08-05 | formatting, grammar, and typo correction | Paul Janzen | |
2000-08-05 | pretty; ok millert | Theo de Raadt | |
2000-08-05 | talk about errno; and try to list sighandler safe functions | Theo de Raadt | |
2000-08-03 | fix xref: info_mkdb -> cap_mkdb; ok millert@ | Christian Weisgerber | |
2000-08-02 | typo | Aaron Campbell | |
2000-08-02 | update other obsoleted rfcs | Niels Provos | |
2000-08-02 | return error if salt is too small; pr 1336 | Niels Provos | |
2000-08-02 | $HOME paranoia: never use getenv("HOME") w/o checking for NULL and non-zero | Todd C. Miller | |
2000-08-01 | close fd for pw_lck on exec, okay deraadt@ | Niels Provos | |
2000-08-01 | Traditional NDBM supports dbm_open(foo, O_WRONLY) but dbopen() does | Todd C. Miller | |
not allow O_WRONLY (it returns EINVAL). If the users passes O_WRONLY to dbm_open, strip it and use O_RDWR instead. | |||
2000-07-31 | reinsert corrected history section, based on jdolecek@netbsd | Paul Janzen | |
2000-07-30 | avoid buffer overrun on too-long reply for NIS hostname lookup. | Jun-ichiro itojun Hagino | |
2000-07-27 | grp.h; peter@runestig.com | Theo de Raadt | |
2000-07-25 | document pitfall cases in argument parsing. sync with kame. | Jun-ichiro itojun Hagino | |
2000-07-24 | Update to ncurses-5.1-20000722 | Todd C. Miller | |
2000-07-21 | Document that truncate() can also be used to extend the size of a file. | Christian Weisgerber | |
From FreeBSD; ok deraadt@ | |||
2000-07-19 | mdoc repairs; requested by mickey@. | Aaron Campbell | |
2000-07-19 | from freebsd: | Michael Shalayeff | |
strtofflags/fflagstostr to convert file flags to/from binary from/into a string as used in chflags(1). use u_int32_t instead of u_long (as freebsd does). increase libc minor. millert@ ok. | |||
2000-07-19 | off-by-one calculation error; getcwd() would return NULL if the buffer was | Theo de Raadt | |
the needed length + terminating byte + 1; that 1 is not needed; assar | |||
2000-07-16 | Stronger caveat wrt stack smashing via % escapes. Each man page | Todd C. Miller | |
carries the same caveat... | |||
2000-07-11 | typo made by hin. this was not test compiled | Theo de Raadt | |
2000-07-11 | New kerberos takes length of the strings passed to the krb_get_nir() function. | Hans Insulander | |
2000-07-10 | ncurses 5.1 | Todd C. Miller | |
2000-07-09 | add description for net.inet6.icmp6.{errppslimit,nd6_maxnudhint} | Jun-ichiro itojun Hagino | |
2000-07-09 | reject empty scopeid/numeric portname. sync with kame. | Jun-ichiro itojun Hagino | |
2000-07-07 | use %s with fprintf | Theo de Raadt | |
2000-07-07 | use %s with fprintf | Theo de Raadt | |
2000-07-07 | Note that EPERM is returned if the named file to be unlinked has its immutable | Aaron Campbell | |
or append-only flag set (see chflags(2)). | |||
2000-07-07 | Add a CAVEATS section explaining that you should never pass a user-supplied | Aaron Campbell | |
format string directly without %s. | |||
2000-07-07 | Insert missing semi-colon. | Aaron Campbell | |
2000-07-05 | return EAI_NODATA, instead of EAI_NONAME, on name resolution errors. | Jun-ichiro itojun Hagino | |
EAI_NONAME does not make sense in these situations. from kame. From: enami@netbsd.org | |||
2000-07-02 | knf; ouch, that hurts | Michael Shalayeff | |
2000-07-02 | new version of ffs from drahn@ | Michael Shalayeff | |
combines binary search and table lookup. tested on i386, sparc, ppc, hppa | |||
2000-06-30 | typo in RFC number. KAME PR 263 | Jun-ichiro itojun Hagino | |
2000-06-30 | warnx?/errx? paranoia (use "%s" not a bare string unless it is a | Todd C. Miller | |
constant). These are not security holes but it is worth fixing them anyway both for robustness and so folks looking for examples in the tree are not misled into doing something potentially dangerous. Furthermore, it is a bad idea to assume that pathnames will not include '%' in them and that error routines don't return strings with '%' in them (especially in light of the possibility of locales). | |||
2000-06-29 | Fix a bad example. We don't want to suggest that people pass | Todd C. Miller | |
a string to err that could have % escapes in it. | |||
2000-06-29 | remove legacy over-general :{B} match for MAC addresses, fixing filters like ↵ | Dug Song | |
'arp[6:2] = 2'. ok angelos@ | |||
2000-06-29 | When specifying negative values (i.e., -1), the '-' character should be | Aaron Campbell | |
escaped. |