Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-12 | sync | Theo de Raadt | |
2014-01-12 | crank to 5.5beta | Theo de Raadt | |
2014-01-12 | allow prev release keys for now, transition 5.4 -> 5.5 kindof requires | Marc Espie | |
it. | |||
2014-01-12 | expand the "eval" description a little; from wiz@netbsd | Jason McIntyre | |
2014-01-12 | avoid use of OpenSSL BIGNUM type and functions for KEX with | Damien Miller | |
Curve25519 by adding a buffer_put_bignum2_from_string() that stores a string using the bignum encoding rules. Will make it easier to build a reduced-feature OpenSSH without OpenSSL in the future; ok markus@ | |||
2014-01-12 | subtly improve an example | Theo de Raadt | |
2014-01-12 | Also move case 'c' into the #ifdef for a smaller binary. It will fall into | Theo de Raadt | |
default, giving a nice failure. I have not removed -c from the usage() or getopt() because it is too much butchering... | |||
2014-01-12 | Since the return value of read_client_conf() is not checked, don't | Kenneth R Westerback | |
bother returning one. | |||
2014-01-12 | update list of chips supported, Chris Hettrick | Theo de Raadt | |
2014-01-12 | sync | Theo de Raadt | |
2014-01-11 | when selecting sets to install, postpone the xbase/comp check so the | Alexander Hall | |
comp set does not get readded if the xbase set is being removed later on the same input line "nice semantics" deraadt@ | |||
2014-01-11 | test pkg key for during the 5.5-beta sequence | Christian Weisgerber | |
2014-01-11 | test fw key for during the 5.5-beta sequence | Stuart Henderson | |
2014-01-11 | Remove useless use of strnlen(3). | Ingo Schwarze | |
Yuckiness pointed out by deraadt@. | |||
2014-01-11 | test key for during the 5.5-beta sequence | Theo de Raadt | |
2014-01-11 | fchownat is allowed to return EOPNOTSUPP | Marc Espie | |
okay guenther@ | |||
2014-01-11 | typos, from Markus Lude, thx! | Marc Espie | |
2014-01-11 | Sync description of struct pf_osfp_entry to rev 1.393 of pfvar.h | Florian Obser | |
OK deraadt@ | |||
2014-01-11 | When I created UDP socket splicing, I added the goto nextpkt loop | Alexander Bluhm | |
to splice multiple UDP packets in the m_nextpkt list. Some profiling with TCP splicing showed that checking so_rcv.sb_mb is wrong. It causes several useless runs through the loop. Better check for nextrecord which contains the original m_nextpkt value of the mbuf. OK mikeb@ | |||
2014-01-11 | add a few things mumble | Theo de Raadt | |
2014-01-11 | remove extraneous D, from Markus Lude | Stuart Henderson | |
2014-01-11 | simplify code: always extract, then install, so that initial installations | Marc Espie | |
and updates are more similar. | |||
2014-01-11 | a bit of spring cleanup in advance: scrape old stuff that's not really | Marc Espie | |
used. | |||
2014-01-11 | optarg/optind are declared in <unistd.h>, so kill the externs here | Philip Guenther | |
2014-01-11 | regen | Brad Smith | |
2014-01-11 | add some more Realtek Card Reader chipsets. | Brad Smith | |
2014-01-11 | No need for a bin/cpio link on the media, because the pax|tar binary does | Theo de Raadt | |
not support cpio anymore. | |||
2014-01-11 | Butcher a smaller tar/pax here, which has no cpio support | Theo de Raadt | |
ok guenther | |||
2014-01-11 | Add -DNOCPIO option for use by distrib/special | Theo de Raadt | |
ok guenther tedu | |||
2014-01-11 | Sync the comments for the M_ICMP_CSUM_* flags with their descriptions in | Lawrence Teo | |
the mbuf(9) man page. | |||
2014-01-11 | Create cleaner & less noisy makefiles, now that we've been using | Theo de Raadt | |
this for 20 years. We don't need to see the splatter as much anymore. | |||
2014-01-11 | just a little TLC | Theo de Raadt | |
2014-01-11 | Let tcpdump detect bad ICMPv6 checksums with the -v flag. | Lawrence Teo | |
Tested on amd64, i386, loongson, and macppc. OK florian@ | |||
2014-01-11 | Let tcpdump detect bad ICMP checksums with the -v flag. | Lawrence Teo | |
Tested on amd64, i386, loongson, and macppc. OK florian@ | |||
2014-01-11 | Make icmp_print() accept the length variable, which is the length of the | Lawrence Teo | |
packet without the IP header. This is needed by the next commit that will allow tcpdump to detect bad ICMP checksums. Related functions like {tcp,udp,icmp6}_print() already accept this length variable, so this change makes icmp_print() consistent with them as well. This commit makes no functional change to tcpdump itself. OK florian@ | |||
2014-01-11 | Check the return value of fstat() in readmsg(). | Lawrence Teo | |
OK deraadt@ tedu@ | |||
2014-01-11 | use -DSHA2_ONLY to be more clear about what we are butchering | Theo de Raadt | |
idea from tedu | |||
2014-01-11 | use NOMAN=1 for all directories | Theo de Raadt | |
2014-01-11 | unify with other Makefiles around here | Theo de Raadt | |
2014-01-10 | Use strtoul() to do octal and hex character conversion instead of | Todd C. Miller | |
custom code. | |||
2014-01-10 | improve ntpctl usage so that the manual page does not need to be read | Theo de Raadt | |
every time ok jmc | |||
2014-01-10 | Don't overwrite the regress target, provide a test target instead. This allows | Tobias Ulmer | |
the test target to fail without terminating overall regression tests. Clean up a little. Also adjust orders.txt.sig comment to new reality, making the test pass again. Looks ok to sthen@ | |||
2014-01-10 | regen | Brad Smith | |
2014-01-10 | Resurrect the "park APs in realmode" idea that we explored back at t2k13 | Mike Larkin | |
(and which didn't work at that time due to a bug which has since been fixed). The APs are now demoted to real mode and placed in a HLT loop while the hibernated image is being unpacked. Helps my x230 significantly, no more spurious reboots on resume. ok deraadt | |||
2014-01-10 | Add the ULT Haswell host bridge id. | Brad Smith | |
Was intending to add this but also reminded by mark rowland | |||
2014-01-10 | Add MSI support. | Brad Smith | |
Tested by comete@daknet.org and vigdis+obsd@chown.me. | |||
2014-01-10 | Fix the unitialized rtableid bug discovered and fixed in the previous | Florian Obser | |
commit by brad@ by calling setsockopt SO_RTABLE only when -V is present. As a bonus drop privileges very early in main, before option parsing. This brings ping6 more in line with what ping does and will make eventual unification easier. OK deraadt@ "works for me" brad@ | |||
2014-01-10 | depluralize | Theo de Raadt | |
ok jmc | |||
2014-01-10 | match what hppa is doing now (not tested, but should be right) | Theo de Raadt | |
ok miod jsing | |||
2014-01-10 | correct argument handling; this has been broken since to beginning | Theo de Raadt | |
and was writing to wrong memory. ok jsing miod guenther |