summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-29Fix logic to not error out.Antoine Jacoutot
2017-08-29add a -q option to ssh-add to make it quiet on success.David Gwynne
if you want to silence ssh-add without this you generally redirect the output to /dev/null, but that can hide error output which you should see. ok djm@
2017-08-29Support REP escape sequence (\033[b).Nicholas Marriott
2017-08-29Check for complete keys before escape prefix, allows keys to be definedNicholas Marriott
with a leading escape. GitHub issue 1048.
2017-08-29do not claim that this is isc dhcpd (but retain credit);Jason McIntyre
issue pointed out by miod ok krw miod
2017-08-29Change the table parser logic. If the table is untyped, determineEric Faurot
its type by examining the first entry: if it contains a separator, type is "mapping", otherwise type is "list". All entries are then parsed according to the table type. The "list" type can also be forced by using the "@list" directive in a comment. This allows to define list of entries containing a separator. Also, log parse errors. ok gilles@
2017-08-29zap trailing whitespace;Jason McIntyre
2017-08-29tweak previous;Jason McIntyre
2017-08-29"urng" is needed on the file lines... or these end up in all kernels,Theo de Raadt
including ramdisks without usb support...
2017-08-29Remove old deactivated pledge path code. A replacement mechanism isTheo de Raadt
being brewed. ok beck
2017-08-29Sync struct declarations with net/pfvar.hLawrence Teo
ok deraadt@ jmc@ sashan@
2017-08-28Fix a memory leak in an error path. Coverity CID 1453042.Jonathan Gray
ok visa@
2017-08-28Update copyright notice contact info.rob
2017-08-28syncTheo de Raadt
2017-08-28Don't bother setting freed history lines to NULL.Jeremie Courreges-Anglas
Dead code that could send the wrong hint to an unsuspicious reader. The code should walk use 'history' & 'histptr' to walk the array. ok millert@, "go for it" tb@
2017-08-28Put history_write() in line with other functions that walk historyJeremie Courreges-Anglas
One method is enough: only access history lines between 'history' and 'histptr'. Pointers outside these bounds might be invalid. ok millert@, "go for it" tb@
2017-08-28swap ualea for urngJasper Lievisse Adriaanse
2017-08-28fix const related warnings; ok millert@Otto Moerbeek
2017-08-28swap ualea for urngJasper Lievisse Adriaanse
2017-08-28Add urng(4) which supports various USB RNG devices. Instead of adding oneJasper Lievisse Adriaanse
driver per device, start bundling them into a single driver. urng(4) supports the device currently supported by ualea(4) and adds support for the Altusmetrum ChaosKey 1.0, by abieber@ This was tested by abieber@ with a ChaosKey and Sean Levy with an Alea II ok abieber@ deraadt@ naddy@
2017-08-28tyop and whitespace nitJasper Lievisse Adriaanse
2017-08-28Use xasprintf() instead of calloc() + strlcpy() + memcpy() toTodd C. Miller
generate the log line. Fixes a clang warning about using the wrong size argument in strlcpy(). The existing code was safe but not good strlcpy() practice. OK otto@
2017-08-28syncTheo de Raadt
2017-08-28ECDHE-RSA-DES-CBC3-SHA should not be marked HIGH.Joel Sing
Spotted by Andreas Bartelt <obsd at bartula dot de>
2017-08-28fix clang warning wrt const string and +; from joerg@netbsd; ok millert@Otto Moerbeek
2017-08-28Some style(9).Joel Sing
2017-08-28Remove chacha20-poly1305-old regress and test vectors.Joel Sing
2017-08-28Remove SSLv23 padding mode.Joel Sing
2017-08-28Bump lib{crypto,ssl,tls} majors due to symbol removals.Joel Sing
2017-08-28Remove EVP_aead_chacha20_poly1305_old() now that the original/oldJoel Sing
chacha20-poly1305 cipher suites have been removed from libssl.
2017-08-28Remove documentation for EVP_aead_chacha20_poly1305_ietf() - this wasJoel Sing
removed/renamed a long time back.
2017-08-28Put the opening curly brace in the right place.Joel Sing
2017-08-28Remove RSA_padding_add_SSLv23()/RSA_padding_check_SSLv23() and relatedJoel Sing
code. We removed SSLv2/SSLv3 a long time ago... Discussed with doug@
2017-08-28Define OPENSSL_NO_NEXTPROTONEG since there is no longer any NPN.Joel Sing
2017-08-28Completely remove NPN remnants.Joel Sing
Based on a diff from doug@, similar diff from inoguchi@
2017-08-28No need for pretty_print_classless() to useKenneth R Westerback
an internal 8K static buffer whose contents are simply copied into another 8K buffer in the caller. Just pass a pointer to and length of the outer buffer.
2017-08-28Use current chacha20-poly1305 cipher suite values.Joel Sing
2017-08-28Do not close the relay if data is still in the output buffer.Alexander Bluhm
Otherwise data not written could get lost. Also try to drain the buffers when socket splicing should be enabled. The latter was lost when the expicit bufferevent_enable() was added in relay_write(). bug report, analysis, initial fix, testing Rivo Nurges; OK beck@
2017-08-28Add %option noinput to suppress an unused function warning.Todd C. Miller
Noticed by and OK ottot@
2017-08-28Update due to removal of original chacha20-poly1305 cipher suites.Joel Sing
2017-08-28Remove the original (pre-IETF) chacha20-poly1305 cipher suites.Joel Sing
Support for the IETF standardised chacha20-poly1305 cipher suites was added 16 months ago, which means they exist in both of the currently supported OpenBSD releases. Also prompted by Andreas Bartelt <obsd at bartula dot de>. ok beck@ doug@
2017-08-28fix char ** to const char ** conversion warning; ok mikeb@Otto Moerbeek
2017-08-28add -z and -Z options to auto suspend or hibernate when low on battery.Ted Unangst
from Jesper Wallin
2017-08-28print id first to make this symetrical to address proposalsFlorian Obser
2017-08-28Fix exit value when diffing directories with missing files and the -NTodd C. Miller
or -P options are not used. From Ibrahim Khalifa
2017-08-28whitespaceTheo de Raadt
2017-08-28whitespaceTheo de Raadt
2017-08-28Fix unchecked return nitBob Beck
ok bcook@ jsing@
2017-08-28Do not forbid targets to specify non-visible panes - the checks forNicholas Marriott
visibility are better where the target is used. GitHub issue 1049.
2017-08-28Add rkpmic(4), a driver for the RK808 Power Management IC. For now, thisMark Kettenis
driver only provides support for the RTC embedded on this device. Support for the voltage regulators will come later. With this diff the Firefly-RK3399 gains a proper clock (if you connect a battery to the board).