Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-01-01 | bit more cleanup | Theo de Raadt | |
2002-01-01 | go back to the swapped xdr_ypresp_key_val for now | Theo de Raadt | |
2001-12-29 | forgotten xid setting for additional domains; gregs@agilestorage.com, pr 2282 | Theo de Raadt | |
2001-12-23 | integrate a patch i did around 1.5 years ago that's already in | Kevin Steves | |
tcpdump.org and netbsd. if verbose and TCP RST segment with payload, print the payload string. Mentat derived stacks may put text strings in RST segments. ok jakob@ | |||
2001-12-22 | No Virginia, there is no adduser.conf(5). | Todd C. Miller | |
2001-12-20 | Cause crontab to send SIGUSR1 when a user's crontab file has changed. | Todd C. Miller | |
In cron, this interrupts the sleep() in cron_sleep() and causes cron to check to see what signal woke it up and act appropriately. This makes crontab changes take effect more or immediately. | |||
2001-12-13 | Mention that cron should be started late in the rc file and why. | Todd C. Miller | |
2001-12-12 | o pids should be pid_t, not int | Todd C. Miller | |
o check return value of fscanf() | |||
2001-12-12 | daemon() can close innocent file descriptors, including opened log. | Michael Shalayeff | |
be more carefull about that and nicer to debugging. daemon() thingie was pointed out by markus@ . | |||
2001-12-11 | Make Makefile.boot produce a working config(8) again, at least on 4.4BSD. | Miod Vallat | |
2001-12-11 | This file was forgotten in the previous wsmouse commits. | Miod Vallat | |
2001-12-11 | If we receive a signal during the sleep(), run signal handlers as | Todd C. Miller | |
needed and then go back to sleep. This fixes the issue where processes run by cron could hang around as zombies for a minute (ie: until we were done sleeping). | |||
2001-12-10 | handle "q" input better; bug reported in 2244 | Theo de Raadt | |
2001-12-10 | follow post-2.1 ip_off & ip_len byte orders | Theo de Raadt | |
2001-12-09 | i like it this way better | Michael Shalayeff | |
2001-12-09 | Do not use stdio functions after a successfull call to daemon(), use | Miod Vallat | |
syslog() instead. ok millert@ | |||
2001-12-09 | Do not use stdio functions after a successfull call to daemon(), use | Miod Vallat | |
syslog() instead. Also, be sure to unlink the pid file and to restore screen when exiting from outside a signal handler. ok millert@ | |||
2001-12-09 | *** empty log message *** | Miod Vallat | |
2001-12-09 | Consider PROTO_IPV6 as compressible by CCP. | brian | |
2001-12-07 | OK, this is horrible. stdio safety in a signal handler, requires that we | Theo de Raadt | |
make the regular data stream non-buffered. This drastically reduces tcpdump performance. Let us commit this, and see how people react. But realistically, without this, we cannot gaurantee that the tail of a file is correct on signal. | |||
2001-12-07 | do not call abort(), it is tasteless | Theo de Raadt | |
2001-12-07 | Make vnds larger than 2G work, mostly by Daniel Lucq <daniel@lucq.org>. | Niklas Hallqvist | |
2001-12-06 | use err/warn and friends instead of printf/exit. | Eric Jackson | |
also, remove fatal2() which is just errx anyway. millert@ ok | |||
2001-12-05 | Minor sync with NetBSD | Todd C. Miller | |
o fix two err() calls that should be errx() o don't use the colonc variable in a non-obvious way o add missing or of F_SHELL when in preserve mode | |||
2001-12-05 | o Use proper uid_t and gid_t types and fixup printf format strings to match | Todd C. Miller | |
o Change "unsigned" -> "unsigned int" o Correct a buffer size that should have been LINE_MAX o Simplify creation of group entry in groupmod() using strlcat() and catch errors. Theo and myself... | |||
2001-12-05 | this has been setuid for quite some time | Theo de Raadt | |
2001-12-05 | simplify | Theo de Raadt | |
2001-12-05 | more free KNF from maja, though this was hard to do | Theo de Raadt | |
2001-12-05 | this stuff is supplied by -lrpcsvc | Theo de Raadt | |
2001-12-05 | simplify the source | Theo de Raadt | |
2001-12-04 | All files are copied from the skel dir, not just dot.* | Todd C. Miller | |
2001-12-04 | Provide eeprom(8) on sparc64. | Miod Vallat | |
2001-12-03 | cleanup submitted by by Miod Vallat <miod@online.fr> | Kenjiro Cho | |
- use pidfile() - simplifies some perror() + exit() constructs to use err() instead - fixes a warn() call instead of a LOG() after daemon() has been called ok millert@ | |||
2001-12-03 | fix bugs in reporting unknown keywords. (argv shoud be *argv) | Kenjiro Cho | |
report and fix by Oleg Safiullin <form@openbsd.ru> | |||
2001-12-02 | KNF, and remove unneccessary signal blocking and errno saving, since not ↵ | Theo de Raadt | |
signal handlers anymore; millert ok | |||
2001-12-02 | pretty much KNF or simplification; millert ok | Theo de Raadt | |
2001-12-01 | Revert previous, as pidfile() uses atexit(), which is no use if we call | Miod Vallat | |
_exit() in signal handlers. Noticed by Theo. | |||
2001-12-01 | Use pidfile() instead of doing the equivalent thing by hand, and sometimes | Miod Vallat | |
forgetting to unlink the pid file at exit. ok millert@ deraadt@ | |||
2001-12-01 | fd_set, not struct fd_set | Theo de Raadt | |
2001-12-01 | document why multicast tools are missing | Theo de Raadt | |
2001-12-01 | pull in protos | Theo de Raadt | |
2001-11-29 | Replace strncpy() calls with adequate strlcpy() ones, and fix a cosmeto. | Miod Vallat | |
jason@ ok | |||
2001-11-29 | Use getifaddrs(3) instead of SIOCGIFCONF, SIOCGIFADDR, SIOCGIFNETMASK, | Todd C. Miller | |
and SIOCGIFFLAGS ioctl()s. Fixes an alignment bug on alpha with a certain number of network interfaces (and simplifies the code tremendously). Based on a patch from Chris Jepeway. | |||
2001-11-27 | Fix check for '/' in cf file and change the check for '/' in df file | Todd C. Miller | |
for consistency. Based on a patch from Sebastian Krahmer. | |||
2001-11-26 | mostly mark signal races | Theo de Raadt | |
2001-11-23 | Remove the hack that ensures that rt_Update() works on FreeBSD. Now | brian | |
that the ncpaddr code doesn't create default routes with non-zero masks, everything works as it should. | |||
2001-11-23 | When writing messages to the routing socket, round sockaddr sizes | brian | |
up in the same way that we expect them to be when we read them. This is a no-op on i386 and probably on alphas, as we currently only support AF_INET and AF_INET6. | |||
2001-11-23 | Be paranoid about non-zero netmasks being associated with INET addresses | brian | |
of 0.0.0.0. The OpenBSD PF_ROUTE/NET_RT_DUMP sysctl is sending back routes with RTAX_NETMASK set, but the corresponding sockaddr being 4 zero bytes (with an address family of zero). ppp was getting confused by this and ending up interpreting it as a 0.0.0.0/32 routing table destination and subsequently failing to do anything with the route. Specifically, after this fix, ppp under OpenBSD can successfully change and delete the default route again ! | |||
2001-11-23 | Removed an unsed variable (oops) | brian | |
2001-11-23 | Don't adjust_linklocal() when pulling a sockaddr out of an ncpaddr or | brian | |
ncprange structure. Don't write() the netmask for IPv6 sockaddrs to the routing socket if the prefixlen is 128. It seems that messages written to the routing socket with the scopeid set for link local addresses are not understood. Instead, we have to put the scopeid in the 5th and 6th bytes of the address (see adjust_linklocal() in ncpaddr.c). I think this may be a bug in the KAME implementation - it should really understand both forms. |