summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-07-06backout rev 1.3, it breaks simultaneous close (no FIN set for retransmits)Markus Friedl
ok deraadt, henning, itojun
2004-07-06- more consistent macrosJason McIntyre
- descriptions of examples before examples, and indent examples - direct people to sigaction(2) for complete list of signals - .Xr pkill 1 - simplify a list from jared yanovich, and some bits from me;
2004-07-06Put dhclient on luna88k, mvme68k and mvme88k installation media.Miod Vallat
Requested by nick@ some time ago, and it fits.
2004-07-06regenBrad Smith
2004-07-06add Planex and Corega EthernetBrad Smith
2004-07-06delint: offset arg to mmap is off_t and remove dead codeOtto Moerbeek
ok millert@
2004-07-06remove ftp7.usa.openbsd.org, they no longer have OpenBSD mirrorDavid Krause
(sync with rev 1.277 of www/ftp.html)
2004-07-06eh, actually add the startup code for ntpdHenning Brauer
2004-07-06bit too rushed :-)Theo de Raadt
2004-07-06remove startup code for that other ntpd from ports and use the oneHenning Brauer
in base instead. theo ok & rush to go for beer
2004-07-06syncTheo de Raadt
2004-07-06sample ntpd config fileHenning Brauer
2004-07-06Back out rev 1.2 as it doesn't make sense--since we exit on failureTodd C. Miller
there is no need to save the old value of the pointer we are realloc()ing. Based on a diff from Andrey Matveev.
2004-07-06from netbsd, via loki@animata.net: revision 1.62. Log message:Theo de Raadt
Fix an error in a debug printf().
2004-07-06sent in by loki@animata.net: This includes all the changes from netbsdTheo de Raadt
related to working with the data toggle, but also includes some endian fixes. The major changes in the netbsd code were in revisions 1.55 and 1.64. their log messages are: 1.55: Set the data toggle correctly, and use EHCI_QTD_DTC. This fixes problems with my ALi-based drive enclosure (it works now, rather than failing to attach). Also seems to work with a GL811-based enclosure and an ASUS enclosure with a CD-RW, on both Intel and NEC controllers. Note: The ALi enclosure is currently very SLOW, due to some issue with taking too long to notice that the QTD is complete. This requires more investigation. 1.64: Further cleanup of toggle handling. Now that we use EHCI_QH_DTC, we don't need to fiddle with the TOGGLE bit in the overlay descriptor, so minimize how much we fuss with it.
2004-07-06from netbsd, via loki@animata.net, ehci.c revision 1.58 without someTheo de Raadt
printfs that are more related to the data toggle. log message: Fix a stupid bug in ehci_check_intr() that caused use to try to complete a transaction that was still running. Now ehci can handle multiple devices being active at once.
2004-07-06from netbsd, via loki@animata.net, ehci.c revision 1.56 sans some debuggingTheo de Raadt
printfs that crept in. log message: Failure to properly mask off UE_DIR_IN from the endpoint address was causing OHCI_ED_FORMAT_ISO and EHCI_QH_HRECL to get set spuriously, causing rather interesting lossage.
2004-07-06make -w optional to set options, so audioctl is consistent withVincent Labrecque
"new" sysctl/mixerctl ok millert@, "go for it" deraadt@
2004-07-06point pplz to rc.conf.local instead of rc.conf, from Bernd Ahlers <ba@bsws.de>Henning Brauer
jmc ok
2004-07-06syncTheo de Raadt
2004-07-06Replace magic number with a more descriptive #define. This magic number wasAaron Campbell
particularly vile because it looks like a typo (i.e., looks like one "f" is missing), but it's really not. I happened to notice this myself, but the fix is inspired by NetBSD in the interest of keeping the code similar. deraadt@ ok
2004-07-06remove .Pp and -compact in displays;Jason McIntyre
2004-07-05prettyTheo de Raadt
2004-07-05- BUGS comes lastJason McIntyre
- remove an empty display (?) - plural is buses (n.) (miod will remind me if we prefer the alternative) - remove grocer's apostrophe
2004-07-05description looking slightly more like a regular manpage and not a pipe-dream.Marc Espie
okay naddy@, with nits from jmc@.
2004-07-05update(8) is an in-kernel process;Jason McIntyre
from jared yanovich;
2004-07-05typo from jared yanovich;Jason McIntyre
2004-07-05avoid mess by specifying netmask to EXAMPLES;Jason McIntyre
problem found by Diana Eichert, solution from ho@, and ok mcbride@;
2004-07-05keep last 8 offset,delay pairs - we'll need them for the clock filters later.Henning Brauer
for now, average over those to adjust the local clock.
2004-07-05be more clearTheo de Raadt
2004-07-05Mention ahd.Miod Vallat
2004-07-05Xref ahd(4).Miod Vallat
2004-07-05Remove extraneous .Ed call.Marco Peereboom
2004-07-05libmilter libs belong in comp, not base. From mpech@, OK deraadt@Todd C. Miller
2004-07-05Add ahd man page.Marco Peereboom
2004-07-05Add ahd man page. Pointers and irony from miod@, ok deraadt@Marco Peereboom
2004-07-05Allocate buffers in randomread and randomwrite via malloc insteadTodd C. Miller
of from the stack. Keeps us from running out of kernel stack during stack-heavy networking load. The bug manifests as a panic during bootup with an fpu-related assertion failure on i386. Fix from Christopher Pascoe; commit requested by deraadt@
2004-07-05Belkin F5D6020 version 1 is a prism card tooTodd C. Miller
2004-07-05delay, not errorHenning Brauer
2004-07-05when running as supplier and asked about a defualt route but we have no,Henning Brauer
do not try to fake one when the query comes from a non-local network, i. e. ifp is NULL, which caused a segfault. PR3841, William J Hulley <jonny@abduction.org>
2004-07-05remove some stuff to make the blocks slightly smaller. we could go furtherTheo de Raadt
still. tested by matthieu
2004-07-05use correct multiplier for us -> s conversionOtto Moerbeek
2004-07-05too clever, perl regexps are greedy, ensure we get the correct name.Marc Espie
2004-07-05clean & knfTheo de Raadt
2004-07-05do not queue events when no daemon running. flush all events on last close.Theo de Raadt
ok tedu
2004-07-05Use strtonum() instead of assigning the value of strtoul() to a uid_t/gid_t.Todd C. Miller
Fixes a warning on 64bit platforms and is less error-prone. OK otto@
2004-07-05userquota and groupquota _optionally_ have a value.Otto Moerbeek
ok pedro@ millert@
2004-07-05%lu and cast to unsigned long to print a size_t; ok hoPeter Valchev
2004-07-05The rde no longer needs to check if the nexthop is the loopback address.Claudio Jeker
This is now down in the parent. OK henning@
2004-07-05new blackhole/reject nexthopsHenning Brauer