summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-03-25ANSI and KNF.Brad Smith
2006-03-25regenBrad Smith
2006-03-25add a second Packet Engines Yellowfin PCI id.Brad Smith
2006-03-25set/clear the all frames bit in the receive filter whenBrad Smith
enabling/disabling promisc mode instead of calling sis_init().
2006-03-25syncTheo de Raadt
2006-03-25"abormally" is a perfectly cromulent word, but "abnormally" is betterDamien Miller
2006-03-25change OpenSSH's xrealloc() function from being xrealloc(p, new_size) toDamien Miller
xrealloc(p, new_nmemb, new_itemsize). realloc is particularly prone to integer overflows because it is almost always allocating "n * size" bytes, so this is a far safer API; ok deraadt@
2006-03-25introduce xcalloc() and xasprintf() failure-checked allocations functionsDamien Miller
and use them throughout openssh xcalloc is particularly important because malloc(nmemb * size) is a dangerous idiom (subject to integer overflow) and it is time for it to die feedback and ok deraadt@
2006-03-24oops, chip misnamed; roman.hunt@comcast.netTheo de Raadt
2006-03-24update supported device list and sort it while im here.David Gwynne
2006-03-24Plug leak in error path; from Alexey Dobriyan; ok ray@Otto Moerbeek
2006-03-24For those of us (including me) who can't type: show an error message ifOtto Moerbeek
the argument is a dir. ok tom@ commit #1000 in slighlty less than 1000 days of commit access :-)
2006-03-24Remove telldir/seekdir support from the internal ld.so lib, it's notOtto Moerbeek
used. ok drahn@
2006-03-24regenBrad Smith
2006-03-24add the Globespan PCI vendor id.Brad Smith
From Stuart Henderson
2006-03-24ANSIfy. Ok ray@Kjell Wooding
2006-03-24change rcs_parse_deltas() and rcs_parse_deltatexts() return valueXavier Santolaria
to void as they never return non-zero. OK ray@.
2006-03-24change rcsclean_file() return type to void as it does not needXavier Santolaria
to be checked. OK ray@.
2006-03-24add test for `rcs -Aoldfile'; not enabled yet. ray@ likes it.Xavier Santolaria
2006-03-24typo;Jason McIntyre
2006-03-24sort;Jason McIntyre
2006-03-24i wish all new hardware was this easy to support. acer labs usb2 dataDavid Gwynne
link cable seems happy. thanks to sevan janiyan for the gear.
2006-03-24Remove unused variables, better integer types, prevent fallthroughs.Ray Lai
Found by lint. Compare char * variables against NULL for consistency and add parentheses around complicated comparisons, suggested by xsa@. OK xsa@
2006-03-24hppa has CardBus and USB as well so add umsm(4).Jonathan Gray
Pointed out by mickey.
2006-03-24move the mp tramp higher to avoid trashing boot args and also to fight ↵Michael Shalayeff
strange memory zeroing happennning on some amd machines; toby@ ok
2006-03-24Document fib couple and decouple. Mostly form bgpctl.8 but with a warningClaudio Jeker
that fib decouple my break you network. OK norby@
2006-03-24Enable umsm(4) on archs that support CardBus.Jonathan Gray
2006-03-24Driver for the serial interface to Qualcomm MSM EVDO modems.Jonathan Gray
Tested with Verizon Wireless by jolan@ ok dlg@
2006-03-24regenDavid Gwynne
2006-03-24Acer Labs USB 2.0 Data Link cable. its a host to host cableDavid Gwynne
2006-03-24oops, noticed by David Hill.Marc Espie
2006-03-24The Buffalo WLI-CB-B11 card uses SA2400 radio.Robert Nagy
2006-03-24Allow the -x flag to be used without an extension.Ray Lai
``that makes sense'' xsa@
2006-03-24Make sure `path' variable is always NUL-terminated.Ray Lai
Totally different diff (but functionally equivalent) by Loic Tortay and okayed by tedu@. ``Looks sane to me'' moritz@
2006-03-24KNF, no binary change.Ray Lai
From Han Boetes.
2006-03-24Fix RCS_KWEXP_INVAL() macro.Ray Lai
Pointed out by Theo. Okay xsa@.
2006-03-24- Set the PCI latency timer for bus master devices.Brad Smith
- Turn on parity checking for the PCI bus. From NetBSD Tested on U5/U10/U30/Netra X1/T1 105/Leopard-V
2006-03-24typo; ray@humanrights.gov.auTheo de Raadt
2006-03-23use strdup() instead; adobriyan@gmailTheo de Raadt
2006-03-23Previous state machine for caps lock would prove ineffective if caps lockMiod Vallat
was remapped to a dead key (such as control). Fortunately (?), accounting power key transitions can help reconstructing the exact caps lock key behaviour - this state machine is still flawed, and one can make it go wrong by hitting one of the caps lock and power keys while the other is held, but for now we'll assume people who do this are smart enough to be able to put the state machine in the correct state back, while mere mortals will never do such things anyway. Spotted by Matthias Kilian, ok itojun@
2006-03-23Document nexthop qualify via (bgp|default).Claudio Jeker
OK henning, additional input jmc@
2006-03-23Simplify the -s documentation and add /var/run/bgpd.sock to the FILES list.Claudio Jeker
help from jmc@
2006-03-23- Remove variable names from function prototypes.Brad Smith
- Use ether_input_mbuf() and bpf_mtap(). From NetBSD ok martin@
2006-03-23List interfaces they way we list neighbors etc.Esben Norby
This makes it much easier to grep in the output. The original format of "show interface" can be seen with "show interface detail". help and ok claudio@
2006-03-23kill evil \r; from cedricMichael Shalayeff
2006-03-23Print the lladdr on carp interfaces.Ryan Thomas McBride
ok henning@
2006-03-23Set a carp MAC address of 00:00:00:00:00:00 if no vhid is assigned.Ryan Thomas McBride
ok henning@
2006-03-23Fix pretty-print of carp link addresses by making them print like IFT_ETHER.Ryan Thomas McBride
Diff from jon@abccomm.com
2006-03-23rlog_file() will never return non-zero; change its return type to void.Xavier Santolaria
2006-03-23fetch() will never return non-zero; change its return type to void.Xavier Santolaria
OK niallo@.