summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-05-22The printf(9) `%p' conversion specifier puts an "0x" inBrad Smith
front of the pointer value. Therefore, remove the "0x" from the format string. From FreeBSD ok millert@
2005-05-22epic(4)Brad Smith
2005-05-22regenReyk Floeter
2005-05-22add new Realtek RT8185 PCI/CardBus deviceReyk Floeter
2005-05-22fix power hooksMartin Reindl
2005-05-22add ahc(4) and re(4)Peter Valchev
2005-05-22sync with latest p0f fingerprintsMike Frantzen
2005-05-22ahc(4) was enabled a while ago, add it here tooPeter Valchev
2005-05-22re(4)Peter Valchev
2005-05-22enable re(4) and ciphy(4) on sparc64Peter Valchev
2005-05-22fix dmesg printMichael Shalayeff
2005-05-22devices scan for the early new hppa64 machines.Michael Shalayeff
match on product id as well as names in correspondent drivers. chain pluto later in case it shows up too early...
2005-05-22Check if the scsi_request has been released in the COMPLETE case asKenneth R Westerback
was already done in the SUCCESSFULLY_QUEUED case. Shouldn't happen, but better safe than sorry if some driver completes it's io immediately. Also don't recompute saved flags if the request is retried. ok marco@
2005-05-22add power hookBrad Smith
2005-05-22syncTheo de Raadt
2005-05-22rewrite the interface groups printing code:Henning Brauer
don't rely on the interface's driver-name based group to be the first in the list don't rely on one group == only default one do not print the "all" group don't segfault on interfaces with no group at all ok mcbride
2005-05-21stray $$Michael Shalayeff
2005-05-21make every interface join a group called "all", mcbride okHenning Brauer
2005-05-21KNFHenning Brauer
2005-05-21clean up and rework the interface absraction code big time, rip out multipleHenning Brauer
useless layers of indirection and make the code way cleaner overall. this is just the start, more to come... worked very hard on by Ryan and me in Montreal last week, on the airplane to vancouver and yesterday here in calgary. it hurt. ok ryan theo
2005-05-21spellingBjorn Sandell
ok beck@
2005-05-21Add some links to krb5_verify_user.3Bjorn Sandell
ok beck@
2005-05-21sync power management settings. this should fix some unrecoverableReyk Floeter
sleep mode timeouts for ar5210, ar5211 and ar5212.
2005-05-21fix parenthesisBrad Smith
2005-05-21hostapd doesn't really do much without root privileges, so check for that earlyMathieu Sauve-Frankel
ok reyk@
2005-05-21add i386 optimized in4_cksumBrad Smith
From NetBSD ok deraadt@
2005-05-21improve power saving modeReyk Floeter
2005-05-21- use MIN()/MAX() rather than min()/max(), to avoid possible truncationBrad Smith
of 64bit values to 'int' - read always single cluster of data, to avoid confusing the buffer cache; this appears to fix the random file content corruption which happens when more than one cluster is read at the same time, i.e. for files > 3*cluster_size - fix some questionable pointer arithmetics; gcc-3.4.x didn't like it - g/c redundant debug printf - remove all traces of non-working quota support add quota support to TODO - makes sense only once writing support would be implemented, and only once NTFS would support notion of file 'owner' - use 64bit local variable for free space computation From NetBSD - Comment fixes from joris@ ok millert@ joris@ pedro@
2005-05-21elf64 of course!Michael Shalayeff
2005-05-21backout part of rev 1.35, which breaks some 5704-based fibre interfaces onBrad Smith
some IBM/Intel blade servers. From FreeBSD
2005-05-21regenBrad Smith
2005-05-21add Broadcom 5714CBrad Smith
From FreeBSD
2005-05-21more heuristics to coerce gnu-m4 mode to work like we wish: if a ^ or $Marc Espie
is seen in the regexp, this means we need to take new lines into account. Otherwise, we don't.
2005-05-21put whole cache info on one line; w/ mods from drahn@; ok drahn@Michael Shalayeff
2005-05-20force addressfamily=inet for tests, unbreaking dynamic-forward regress forDamien Miller
recently committed nc SOCKS5 changes
2005-05-20Teach the SOCKS5 code more of the protocol, so it can send domain namesDamien Miller
to the proxy instead of resolving them locally and sending IPv4 addresses. This improves privacy, e.g. when using nc with OpenSSH DynamicForward tunnels, and gives us better IPv6 support; ok beck@
2005-05-20correct wrong error code usage.Joris Vink
ok jfb@, xsa@
2005-05-20cvs_noexec checks; jfb okXavier Santolaria
2005-05-20simplify error messageJean-Francois Brousseau
2005-05-20do not hardcode 'CVS/Root' but rather use defined CVS_PATH_ROOTSPEC;Xavier Santolaria
ok jfb joris
2005-05-20make the handlers static and remove local code that will go in anotherJean-Francois Brousseau
function
2005-05-20first bits of the `cvs -n' option; ok jfb jorisXavier Santolaria
2005-05-20plug a memleakJoris Vink
2005-05-20* missing prototype for lookup()Jean-Francois Brousseau
* remove crufty VMS-specific code * sprinkle some magic knf dust
2005-05-20return CVS_EX_PROTO on protocol errorsJean-Francois Brousseau
ok joris
2005-05-20split protocol 1 auth methods into separate functions, makes authloopDamien Miller
much more readable; fixes and ok markus@
2005-05-20oops - article and spacing;Jason McIntyre
2005-05-20HTTP proxy doesn't need an address lookup - saves some time and avoids aDamien Miller
spurious error if the lookup fails. from Ray; ok markus@
2005-05-20cross reference proxy example to relevant ssh option;Jason McIntyre
originally from ray; help/ok djm@
2005-05-20give a ProxyCommand example using nc(1), with and ok jmc@Damien Miller