Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-09-08 | ansi pedantic. sync w/kame | Jun-ichiro itojun Hagino | |
2002-05-31 | clarify comment when nreceived > ntransmitted. from deraadt | Jun-ichiro itojun Hagino | |
2002-05-30 | missing "%s". from netbsd | Jun-ichiro itojun Hagino | |
2002-05-30 | typo | Theo de Raadt | |
2002-05-26 | KNF. remove unneeded variable. from deraadt | Jun-ichiro itojun Hagino | |
2002-05-26 | re-integrate a grammar fix | Theo de Raadt | |
2002-05-26 | sync with latest KAME tree. -S option uses bind(2), -g option, KNF | Jun-ichiro itojun Hagino | |
2002-05-12 | These small setuid programs allocate a resvport, and then immediately revoke | Theo de Raadt | |
privs. Link them static, so that even less code is run before main does that job. | |||
2002-03-11 | no \n to warnx(3). From: Mike Pechkin <mpech@prosoft.org.lv> | Jun-ichiro itojun Hagino | |
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-11-17 | oops | Theo de Raadt | |
2001-11-17 | volatile sig_atomic_t | Theo de Raadt | |
2001-11-05 | one more mistake in ping6_timeval conversion | Jun-ichiro itojun Hagino | |
2001-11-05 | one mistake in ping6_timeval conversion. use int32_t instead of int | Jun-ichiro itojun Hagino | |
when we want a variable with specific size. | |||
2001-11-01 | ship timing info in network byte order | Theo de Raadt | |
2001-11-01 | fix 64 bit issues regarding timevals | Theo de Raadt | |
2001-10-26 | kill registers. | Mike Pechkin | |
itojun@ ok | |||
2001-08-18 | also handle snprintf() < 0 | Theo de Raadt | |
2001-07-25 | We have to undo the changes to the 3rd party code, because it makes | Mike Pechkin | |
upgrading those components hell. Tip of the day: Don't commit without confirmation. | |||
2001-07-20 | we don't like: | Mike Pechkin | |
o) .Pp before/after .Sh; o) .Pp before/after .Rs/.Re; o) .Nm without argument in SYNOPSIS; | |||
2001-07-07 | major -Wall cleanup, almost complete | Theo de Raadt | |
2001-07-05 | clarify -a. sync with kame | Jun-ichiro itojun Hagino | |
2001-06-27 | Consistently use "IPsec" capitalization (jsyn@nthought.com) | Angelos D. Keromytis | |
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-22 | sync usage/manpage with reality. | Jun-ichiro itojun Hagino | |
From: Brian Poole <raj@cerias.purdue.edu> | |||
2001-05-09 | correct signal handling for ping6 -f <nonexisting destination>. | Jun-ichiro itojun Hagino | |
from hash@iij.ad.jp. sync with kame | |||
2001-03-19 | examples. suggested by deraadt. sync with kame | Jun-ichiro itojun Hagino | |
2001-03-12 | -Q is not there. NetBSD PR 12384. sync with kame | Jun-ichiro itojun Hagino | |
2001-02-04 | add more pedantic checks for recvmsg return value. sync with kame | Jun-ichiro itojun Hagino | |
2001-01-26 | better signal handling. look at check signal flag bit every time we visit | Jun-ichiro itojun Hagino | |
the loop (not just after EINTR on select). sync with kame | |||
2001-01-12 | repair -f. | Jun-ichiro itojun Hagino | |
2001-01-12 | minimize chance of signal handler race. big help from deraadt. | Jun-ichiro itojun Hagino | |
2001-01-12 | correct fd_set allocation. from deraadt | Jun-ichiro itojun Hagino | |
2001-01-12 | save_errno handling; itojun ok | Theo de Raadt | |
2000-12-31 | merge mistake. -m is not available in *bsd-current | Jun-ichiro itojun Hagino | |
2000-12-28 | indent. couple of pedant. from deraadt (sync with kame) | Jun-ichiro itojun Hagino | |
2000-12-22 | call seteuid(getuid) too | Jun-ichiro itojun Hagino | |
2000-12-22 | revoke root privilege earliest possible | Jun-ichiro itojun Hagino | |
2000-12-02 | sync with latest kame. | Jun-ichiro itojun Hagino | |
- validate strdup() error in argument parsing. - use strlcat in complex string manipulation | |||
2000-11-11 | improve spec conformance of node information query (07). | Jun-ichiro itojun Hagino | |
make sure to check scoped address right on PMTUD. sync with kame. | |||
2000-11-10 | sync with kame. | Jun-ichiro itojun Hagino | |
- allow -s (data len) that are < 8. - more fflush. | |||
2000-10-12 | don't segv on too many arguments. sync with kame | Jun-ichiro itojun Hagino | |
2000-10-12 | printf-like string format pedant | Jun-ichiro itojun Hagino | |
2000-10-08 | update DNS label length validation. check inet_ntop() errors. sync with kame. | Jun-ichiro itojun Hagino | |
2000-10-06 | Avoid fd_set overflow. (just like in ping). | Artur Grabowski | |
2000-08-14 | correct truncated FQDN printing | Jun-ichiro itojun Hagino | |
2000-08-13 | recover less-than-1 interval support with -i. | Jun-ichiro itojun Hagino | |
completely in sync with kame (do not nuke #ifdef please). | |||
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). |