Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-29 | Fix logic to not error out. | Antoine Jacoutot | |
2017-08-29 | add 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-29 | Support REP escape sequence (\033[b). | Nicholas Marriott | |
2017-08-29 | Check for complete keys before escape prefix, allows keys to be defined | Nicholas Marriott | |
with a leading escape. GitHub issue 1048. | |||
2017-08-29 | do not claim that this is isc dhcpd (but retain credit); | Jason McIntyre | |
issue pointed out by miod ok krw miod | |||
2017-08-29 | Change the table parser logic. If the table is untyped, determine | Eric 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-29 | zap trailing whitespace; | Jason McIntyre | |
2017-08-29 | tweak 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-29 | Remove old deactivated pledge path code. A replacement mechanism is | Theo de Raadt | |
being brewed. ok beck | |||
2017-08-29 | Sync struct declarations with net/pfvar.h | Lawrence Teo | |
ok deraadt@ jmc@ sashan@ | |||
2017-08-28 | Fix a memory leak in an error path. Coverity CID 1453042. | Jonathan Gray | |
ok visa@ | |||
2017-08-28 | Update copyright notice contact info. | rob | |
2017-08-28 | sync | Theo de Raadt | |
2017-08-28 | Don'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-28 | Put history_write() in line with other functions that walk history | Jeremie 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-28 | swap ualea for urng | Jasper Lievisse Adriaanse | |
2017-08-28 | fix const related warnings; ok millert@ | Otto Moerbeek | |
2017-08-28 | swap ualea for urng | Jasper Lievisse Adriaanse | |
2017-08-28 | Add urng(4) which supports various USB RNG devices. Instead of adding one | Jasper 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-28 | tyop and whitespace nit | Jasper Lievisse Adriaanse | |
2017-08-28 | Use xasprintf() instead of calloc() + strlcpy() + memcpy() to | Todd 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-28 | sync | Theo de Raadt | |
2017-08-28 | ECDHE-RSA-DES-CBC3-SHA should not be marked HIGH. | Joel Sing | |
Spotted by Andreas Bartelt <obsd at bartula dot de> | |||
2017-08-28 | fix clang warning wrt const string and +; from joerg@netbsd; ok millert@ | Otto Moerbeek | |
2017-08-28 | Some style(9). | Joel Sing | |
2017-08-28 | Remove chacha20-poly1305-old regress and test vectors. | Joel Sing | |
2017-08-28 | Remove SSLv23 padding mode. | Joel Sing | |
2017-08-28 | Bump lib{crypto,ssl,tls} majors due to symbol removals. | Joel Sing | |
2017-08-28 | Remove EVP_aead_chacha20_poly1305_old() now that the original/old | Joel Sing | |
chacha20-poly1305 cipher suites have been removed from libssl. | |||
2017-08-28 | Remove documentation for EVP_aead_chacha20_poly1305_ietf() - this was | Joel Sing | |
removed/renamed a long time back. | |||
2017-08-28 | Put the opening curly brace in the right place. | Joel Sing | |
2017-08-28 | Remove RSA_padding_add_SSLv23()/RSA_padding_check_SSLv23() and related | Joel Sing | |
code. We removed SSLv2/SSLv3 a long time ago... Discussed with doug@ | |||
2017-08-28 | Define OPENSSL_NO_NEXTPROTONEG since there is no longer any NPN. | Joel Sing | |
2017-08-28 | Completely remove NPN remnants. | Joel Sing | |
Based on a diff from doug@, similar diff from inoguchi@ | |||
2017-08-28 | No need for pretty_print_classless() to use | Kenneth 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-28 | Use current chacha20-poly1305 cipher suite values. | Joel Sing | |
2017-08-28 | Do 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-28 | Add %option noinput to suppress an unused function warning. | Todd C. Miller | |
Noticed by and OK ottot@ | |||
2017-08-28 | Update due to removal of original chacha20-poly1305 cipher suites. | Joel Sing | |
2017-08-28 | Remove 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-28 | fix char ** to const char ** conversion warning; ok mikeb@ | Otto Moerbeek | |
2017-08-28 | add -z and -Z options to auto suspend or hibernate when low on battery. | Ted Unangst | |
from Jesper Wallin | |||
2017-08-28 | print id first to make this symetrical to address proposals | Florian Obser | |
2017-08-28 | Fix exit value when diffing directories with missing files and the -N | Todd C. Miller | |
or -P options are not used. From Ibrahim Khalifa | |||
2017-08-28 | whitespace | Theo de Raadt | |
2017-08-28 | whitespace | Theo de Raadt | |
2017-08-28 | Fix unchecked return nit | Bob Beck | |
ok bcook@ jsing@ | |||
2017-08-28 | Do not forbid targets to specify non-visible panes - the checks for | Nicholas Marriott | |
visibility are better where the target is used. GitHub issue 1049. | |||
2017-08-28 | Add rkpmic(4), a driver for the RK808 Power Management IC. For now, this | Mark 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). |