Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-05-28 | document net.inet6.ip6.maxfrags | Jun-ichiro itojun Hagino | |
2002-05-26 | pid_t cleanup | Theo de Raadt | |
2002-05-24 | add net.inet.icmp.tstamprepl sysctl for timestamp control; jason@ackley.net | Theo de Raadt | |
2002-05-24 | try to use strlcpy and snprintf more; ok various | Theo de Raadt | |
2002-05-22 | put a real struct definition instead of the weird "typedef struct | Vincent Labrecque | |
{};" thing ok millert | |||
2002-05-09 | now catches SIGALRM and SIGPIPE too | Todd C. Miller | |
2002-05-09 | Add SIGALRM and SIGPIPE to the list of signals we catch, turn echo back on, | Todd C. Miller | |
and then re-deliver. Note that for this to work with setugid processes, the recent fix to cansignal() in kern_sig.c is required. | |||
2002-05-08 | Fix typo; Peter Werner | Todd C. Miller | |
2002-05-01 | Sync EA with FreeBSD, mostly addition of new ENOATTR errno. | Dale Rahn | |
ok millert@, art@ | |||
2002-05-01 | o) start new sentence on a new line; | Mike Pechkin | |
o) always close .Bl tags; o) fix usage of .Xr; millert@ ok | |||
2002-04-30 | Some errno entries were not documented or added to _sys_errlist[] when | Dale Rahn | |
they were added to errno.h. Add the missing entries. ok millert@ | |||
2002-04-30 | Initial cleanup: | Mike Pechkin | |
o) remove extra space in the end of line; o) remove extra blank lines in the end of file; o) remove .Pp before .Ss; o) CAVEAT -> CAVEATS; o) fix usage of .Fa; o) <blank-line> -> .Pp; o) wrap long lines; millert@ ok | |||
2002-04-29 | Stash string lengths in variables instead of computing multiple times. | Todd C. Miller | |
Based on a patch from Lars J. Buitinck | |||
2002-04-19 | avoid cranking libc minors for another few weeks | Theo de Raadt | |
2002-04-17 | Use __func__ in assert. | Marc Espie | |
ok millert@ | |||
2002-04-03 | WCCPv1 GRE sysctl -- ok deraadt@ | Angelos D. Keromytis | |
2002-03-27 | VM is a history. From lazy form@. | Mike Pechkin | |
millert@ ok | |||
2002-03-20 | fix memleak. | Mike Pechkin | |
millert@ ok | |||
2002-03-16 | Add CAVEATS section similar to authenticate.3 | Todd C. Miller | |
2002-03-16 | Add CAVEATS section that details which functions call getpw* so | Todd C. Miller | |
the programmer knows when to make a local copy of the struct passwd and how to avoid multiple passwd file lookups. | |||
2002-03-16 | Add auth_getpwd MLINK | Todd C. Miller | |
2002-03-16 | o Document auth_getpwd() | Todd C. Miller | |
o Use .Pp, not .sp o Work around two mdoc bugs by using .br | |||
2002-03-13 | Convert indentation whitespace -> tabs and kill $@%^#! ^M's | Todd C. Miller | |
2002-03-02 | document tcp.ackonpush | Niels Provos | |
2002-03-01 | document cryptodevallowsoft | Niels Provos | |
2002-02-23 | sysctl kern.usercrypto | Theo de Raadt | |
2002-02-23 | Document KERN_SYSVIPC_INFO; from NetBSD | Todd C. Miller | |
2002-02-23 | Add brief LOGIN_SETLOGIN caveat and point the user to setlogin(2) | Todd C. Miller | |
for more info. | |||
2002-02-19 | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | Todd C. Miller | |
2002-02-18 | Open console with O_NONBLOCK to avoid blocking on a locked console. | Todd C. Miller | |
From David Malone | |||
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. | |||
2002-02-16 | MI man page to document fpgetmask(3) and friends; from ross@NetBSD, ok deraadt | Peter Valchev | |
2002-02-10 | back out the no reserved port option for nfs | Nathan Binkert | |
2002-02-05 | o) Fix memory leak in _auth_checklogin(), auth_approval(), auth_close() and | Mike Pechkin | |
auth_clean(). Spotted via ftpd. We could use ftpd as a simple debug tool for bsdauth and login_cap routines. :) millert@ help&OK | |||
2002-01-29 | Fix memory leak in setuserpath(). We prefer patch from millert@. | Mike Pechkin | |
2002-01-28 | Fix memory leaks in login_getcapnum() and login_getcapsize(). | Mike Pechkin | |
millert@ ok | |||
2002-01-24 | ellaborate on history | Michael Shalayeff | |
2002-01-23 | _THREAD_PRIVATE_MUTEX_UNLOCK() on error before returning; millert@ ok. | Federico G. Schwindt | |
2002-01-23 | Fix memory leaks in login_getstyle(), login_getstr() and login_getcaptime() | Todd C. Miller | |
2002-01-16 | Use the volatile specifier to fix warnings about variables being | Todd C. Miller | |
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack. | |||
2002-01-14 | If waitpid() return ECHILD that should not be a fatal error since | Todd C. Miller | |
someone else could have waited for the process or zombies could be disabled via SIG_IGN or SA_NOCLDWAIT. | |||
2002-01-12 | document net.inet.icmp.redir{accept,timeout} | Eric Jackson | |
2002-01-11 | typo | Jun-ichiro itojun Hagino | |
From: Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at> | |||
2002-01-11 | document new sysctl for vfs.nfs.norsvport | Nathan Binkert | |
2002-01-07 | If the handler for SIGCHLD is set to SIG_IGN, act as if the | Todd C. Miller | |
SA_NOCLDWAIT (don't create zombies) flag has been specified. This is consistent with most other operating systems and is what XPG4.2 specifies. | |||
2002-01-02 | more pid_t use | Theo de Raadt | |
2001-12-15 | Document SIGTTIN and SIGTTOU now that we deal with them too. | Todd C. Miller | |
2001-12-15 | Catch SIGTTIN and SIGTTOU too and treat them like SIGTSTP. | Todd C. Miller | |
2001-12-07 | Add ERRORS and STANDARDS sections | Todd C. Miller | |