summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-03-09connect rcs/ stuffs; ok jfb jorisXavier Santolaria
2005-03-09enable -f option of `remove' command; ok jfb jorisXavier Santolaria
2005-03-09align, and don't override the standard BINOWN and BINMODEJean-Francois Brousseau
2005-03-09memcpy/memmove correctness here as wellHenning Brauer
2005-03-09correctness: memmove instead of memcpy where we might have overlapsHenning Brauer
2005-03-09when, after processing all complete imsgs we found in the buffer,Henning Brauer
there are some bytes left (less than an imsg header, or less than the imsg header len field says) we copy it to the very beginning of the buffer. use memmove instead of memcpy since it is not guaranteed that there's no overlap. while memcpy on OpenBSD is safe, it might not elsewhere, and we want our code to be correct anyways. funny enough theo and I talked at length about that last week in dublin, and I said I believe I had no memcpys with the chance of overlap in ntpd/bgpd - well, here is one, and Alexander von Gernler <grunk@pestilenz.org> pointed me to it.
2005-03-09List bus in a seperate column in the device list.Jonathan Gray
mdoc pointers from jmc@
2005-03-09Sync with reboot(8) man page.Kenji Aoyama
(luna88k and zaurus also work with -p option.) ok miod@
2005-03-09syncTheo de Raadt
2005-03-09in this case, clarity is requiredTheo de Raadt
2005-03-09- grammarJason McIntyre
- new sentence, new line
2005-03-09- spelling and grammarJason McIntyre
- unneeded .Pp
2005-03-09regenJonathan Gray
2005-03-09Add ATI RS100 entries found in a dmesg from tristan at ltdev.arubaon.comJonathan Gray
Correct RS200 entries while here.
2005-03-09just clue() the first time a library is not found.Marc Espie
More clues are generally useless...
2005-03-09report all missing libraries (report is a bit verbose, but this will do).Marc Espie
2005-03-09simplification; ok reykTheo de Raadt
2005-03-09oops, since we don't register destdir along with libs, looking up withMarc Espie
destdir is doomed.
2005-03-09document the various radio transceivers.Damien Bergamini
looks fine jsg@
2005-03-09make sure lookup_libspec returns the same thing in -v -v mode.Marc Espie
2005-03-09Sync with ral(4) changes.Jonathan Gray
2005-03-09from freebsd:Markus Friedl
1. set rcv_laststart/rcv_lastend after checking the tcp window 2. pass rcv_laststart and rcv_lastend on the stack (shrink tcp state) ok henning, djm
2005-03-09the mg binary is too small, if we keep adding theo quotes we might beHenning Brauer
as big as vi one day
2005-03-09better description of what the hardware and driver do.David Gwynne
2005-03-09`Ez Connect' -> `EZ Connect';Jason McIntyre
from tamas tevesz; verified by aue(4), wi(4), and google;
2005-03-09use `CardBus' rather than `Cardbus' for consistency;Jason McIntyre
2005-03-09Now that rounding is done properly for fractionless numbers, fix theOtto Moerbeek
regression cases and add a few too.
2005-03-09Fix rounding of fractionless numbers. ok tom@ miod@Otto Moerbeek
2005-03-09the man page was completely revised by others, remove myself as its author.Damien Bergamini
2005-03-09we don't support hardware WEP yet.Damien Bergamini
2005-03-09fix the list of supposedly supported adapters.Damien Bergamini
2005-03-09syncTheo de Raadt
2005-03-09a long cable usb repeater...Theo de Raadt
2005-03-09change references to A5 partition type to A6, from uwe@joshua stein
and a small grammar nit from me
2005-03-09tweak examples; ok and input deraadtPeter Valchev
- add /usr/src w/ softdep - remove procfs/kernfs
2005-03-08OpenSSH 4.0Damien Miller
2005-03-08weeping the tree for printf(s) where printf("%s",s) should be used.Chad Loder
This is a regression introduced during conversion from perror(3) to err(3) OK mickey@
2005-03-08Some more ral(4) devices that will likely work.Jonathan Gray
From http://ralink.rapla.net/
2005-03-08Sweeping the tree for printf(s) where printf("%s",s) should be used.Chad Loder
This is a regression introduced during conversion from perror(3) to err(3) OK mickey@
2005-03-08Sweeping the tree for printf(s) where printf("%s",s) should be used.Chad Loder
This is a regression introduced during conversion from perror(3) to err(3)
2005-03-08Oops. Put scoop GPIO pins into correct state on suspend, and remove anUwe Stuehler
unnecessary function while there. ok drahn@
2005-03-08Enable or disable CF sockets at appropriate times, but be sure toUwe Stuehler
enable socket 0 power via GPIO. Socket 1 can be ignored for now. Initial diff, testing, and ok drahn@.
2005-03-08Sweeping the tree for printf(s) where printf("%s",s) should be used.Chad Loder
OK millert
2005-03-08also display the correct priority on sparc64 when failing to registerMartin Reindl
an interrupt ok miod@ deraadt@
2005-03-08When failing to register an interrupt, display the correct priority on sparc64.Miod Vallat
ok cloder@ martin@
2005-03-08Remove no longer valid route entries.Esben Norby
ok claudio@
2005-03-08Kill hp300 DISKLESS kernel, not worth using against GENERIC for disklessMiod Vallat
systems since it still has all the filesystems for vnd usage and thus does not save much memory... ok deraadt@
2005-03-08Do not shadow a parameter with a local variable. also add a debug statementDale Rahn
to print dependandant libraries loaded by dlopen ok kurt@
2005-03-08Cosmetics...Thierry Deval
Mainly remove space between locators parens, replace spaces with tabs where appropriate and consistently align dependencies.
2005-03-08do not trash errno before using it, do not pass garbage args to getnameinfoTheo de Raadt
ok henning andrushock@korovino.net