summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-27fix compilation with OPENSSL=no; ok dtucker@Damien Miller
2015-04-27Include stdio.h for FILE (used in sshkey.h) so it compiles with OPENSSL=no.Darren Tucker
2015-04-27allow "sshd -f none" to skip reading the config file, much likeDamien Miller
"ssh -F none" does. ok dtucker
2015-04-26Don't support -s on FIFOs, it doesn't work well and the workarounds areNicholas Marriott
a bit horrible.
2015-04-26Remove panes from layout if spawning them fails, reported by Anthony JNicholas Marriott
Bentley.
2015-04-26mlarkin asks "bgpctl checks the length of the control socket path toSebastian Benoit
make sure it fits. When browsing around last night I saw that bgpd does not. Any reason it shouldn't? Please commit" Add a check in parse.y to check this when reading the configuration. ok phessler@ henning@
2015-04-26stat() the original link path not the resolved one which may be relative.Nicholas Marriott
2015-04-26Fix typo in the buffer size value: 7680 in the manpage vs 7860 inDavid Coppa
the sndiod.c code. Initially, I thought the error was in the manpage, but Alexander told me it was the code, so fix the code instead. ok ratchov@
2015-04-26get_responsefile: instead of keeping the dhcp-supplied next-server whereHenning Brauer
we fetch the response file from in a local _server var, put it in an exported AI_SERVER one. last not least that allows install.site to see it. ok krw rpe
2015-04-26Have vio_start() check if the queue is empty.Stefan Fritsch
from brad@
2015-04-26Get dwc2 working on octeon.Jonathan Matthew
- transplant the clock setup code from octhci - add a bus space tag to deal with dwc2 using little endian addressing - bump up the rx fifo size, necessary for umass/sd to work tested on an edgerouter lite, which can almost boot by itself now ok uebayasi@ (various parts), miod@ (bus space bits)
2015-04-26vio: Support checksum offloading for IPv4 TXStefan Fritsch
"Looks good to me" brad@
2015-04-26regenStefan Sperling
2015-04-26Add IDs for RTL8188ETV and RTL8188EU. From FreeBSD via Mikhail on tech@Stefan Sperling
2015-04-26for every policy we write out, flush the output so we don't get anPeter Hessler
irritating partially written line
2015-04-26Disable PAE when switching to the hibernate resume pagetables. This involvesMark Kettenis
a slightly conmplicated dance where we stash the PAE PDPTEs into the hibernate resume pagetables and use those before turning off PAE. Makes (un)hibernate work with the new PAE pmap. ok mlarkin@
2015-04-26Add Digitus DN-7003GT to list of supported urtw(4) devices.Stefan Sperling
2015-04-26regenStefan Sperling
2015-04-26Add USB device ID for RTL8812AU. Found in "TP-Link AC1200 T4U" device.Stefan Sperling
2015-04-26Enable NX support in the resume path. Makes suspend/resume work with theMark Kettenis
PAE pmap. ok deraadt@, mlarkin@
2015-04-26Only enable PAE if the CPU we're running on has NX support. Without NXMark Kettenis
support we're only wasting memory on the larger PAE page tables without any real benefit. This allows some simplifications of the low-level assembly code. ok mlarkin@, deraadt@
2015-04-26bump i386 MAXDSIZ to 3GB. - "If you're running this, and presumably actuallyStuart Henderson
using that much memory, go for it" tedu@ "I don't see any immediate downsides" kettenis@
2015-04-26syncTheo de Raadt
2015-04-26Two extra messages required after sending a baud rate update, as observedJonathan Matthew
in the linux mct_u232 driver, which apparently got them by sniffing usb traffic from the vendor's windows 98 driver. Makes this device work at 115200: umct0 at uhub0 port 2 "Belkin Components F5U109 Serial" rev 1.10/1.02 addr 2 ok dlg@
2015-04-26Require a PT_LOAD segment's p_filesz to be no larger than its p_memsz.Philip Guenther
test cases provided by Alejandro Herna'ndez (nitrousenador (at) gmail.com) ok deraadt@ jsg@
2015-04-26Fix glitches in previous commit: strip the \n and only complain on failurePhilip Guenther
ok deraadt@
2015-04-25some people are capitalizing keywords, so ignore case when we test the tokensPeter Hessler
OK henning@ benno@
2015-04-25Cut the aliases part of /etc/rpc lines before feeding them to strtonum(), forMiod Vallat
it will fail otherwise; ok deraadt@ millert@
2015-04-25We now following the ABI and always clear cld on function entry, so removePhilip Guenther
the extra CLD instructions from when that wasn't true testing miod@ krw@
2015-04-25cpu_busy_cycle_fcn callback has never been usedPhilip Guenther
2015-04-25Only print MIME warnings when warnings are enabled.Nicholas Marriott
2015-04-25Repair boot device detection when booting off the second SCSI controller onMiod Vallat
AV530.
2015-04-25Disable kq-tun test, as it's been broken for a while and not because of kqPhilip Guenther
2015-04-25Apply pre-built unicore patch, remove excess files - perl-5.20.2Andrew Fresh
2015-04-25Apply local patches, remove excess files - perl-5.20.2Andrew Fresh
2015-04-25Fix merge issues, remove excess files - match perl-5.20.2 distAndrew Fresh
2015-04-25Import perl-5.20.2Andrew Fresh
2015-04-25Get rid of window_choose_list type.Nicholas Marriott
2015-04-25Fix some char* -> char *.Nicholas Marriott
2015-04-25Use a char **,u_int pair for cfg_causes.Nicholas Marriott
2015-04-25Fail if a \ appears at EOL rather than continuing off the end of theNicholas Marriott
buffer, from Sebastien Marie.
2015-04-25Make message log a TAILQ.Nicholas Marriott
2015-04-25Move the functions to convert ids from strings into session.c and window.c.Nicholas Marriott
2014-11-17Import perl-5.20.1Andrew Fresh
2015-04-25double word fix; from david vasekJason McIntyre
2015-04-25Switch to using the POSIX endian macros, i.e: be64toh vs. betoh64.Bryan Steele
ok nicm@
2015-04-25Don't ignore the reference count in X509_STORE_free.Doug Hogan
Based on this upstream commit: bff9ce4db38b297c72a6d84617d71ae2934450f7 which didn't make it into a release until 1.0.2. Thanks to william at 25thandclement dot com for reporting this! ok deraadt@ jsing@ beck@
2015-04-25Explicitly cancel mouse "button" mode, this happens implicitly with someNicholas Marriott
one of the other things we send with xterm, but not with urxvt. Reported by sthen@.
2015-04-25add check for overflow while doubling (very unlikely in practice, but stillMarc Espie
better style code). Problem noticed by deraadt@ in m4. okay doug@ deraadt@
2015-04-25Check for invalid leading zeros in CBS_get_asn1_uint64.Doug Hogan
ASN.1 integers cannot have all zeros or all ones for the first 9 bits. This rule ensures the numbers are encoded with the smallest number of content octets (see ITU-T Rec X.690 section 8.3.2). Based on BoringSSL commit 5933723b7b592e9914f703d630b596e140c93e16 ok deraadt@ jsing@