Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-23 | Escape+Up and the other arrow keys should be kept as Escape+Up and not | Nicholas Marriott | |
converted to M-Up. Do not give them the implied meta flag so they don't match the M-Up entry in the output key tree. Fixes problem with vi reported by jsing@. | |||
2020-09-22 | Move a sentence to the right command. | Nicholas Marriott | |
2020-09-22 | Do not wrap at end of text when positioning at end of match because the | Nicholas Marriott | |
length may include trailing spaces. | |||
2020-09-22 | Resize screen to the correct size (borders need to be taken off). | Nicholas Marriott | |
2020-09-22 | Fix warnings on some platforms with %llx and add a new message to handle | Nicholas Marriott | |
64-bit client flags. | |||
2020-09-21 | close stdin when forking after authentication too; ok markus | Damien Miller | |
2020-09-20 | close stdout/stderr after "ssh -f ..." forking | Damien Miller | |
bz#3137, ok markus | |||
2020-09-20 | cap channel input buffer size at 16MB; avoids high memory use when | Damien Miller | |
peer advertises a large window but is slow to consume the data we send (e.g. because of a slow network) reported by Pierre-Yves David fix with & ok markus@ | |||
2020-09-18 | Free buffer earlier to avoid confusing some compilers, GitHub issue | Nicholas Marriott | |
2382. | |||
2020-09-18 | Some other warnings, GitHub issue 2382. | Nicholas Marriott | |
2020-09-18 | handle multiple messages in a single read() | Damien Miller | |
PR#183 by Dennis Kaarsemaker; feedback and ok markus@ | |||
2020-09-18 | tweak the client hostkey preference ordering algorithm to prefer the | Damien Miller | |
default ordering if the user has a key that matches the best-preference default algorithm. feedback and ok markus@ | |||
2020-09-16 | Add -q flag to unbind-key to hide errors, GitHub issue 2381. | Nicholas Marriott | |
2020-09-16 | Fix some warnings, GitHub issue 2382. | Nicholas Marriott | |
2020-09-16 | Remove unused buf, last user was removed when switching to the sshbuf API. | Darren Tucker | |
Patch from Sebastian Andrzej Siewior. | |||
2020-09-15 | "Route show" and "netstat -r" provide formatting for routing tables with | pamela | |
sufficient space to display v4 addresses cleanly, but which truncate v6 addresses. The -n flag on each already provides additional column width for IPv6 addresses. Make this formatting the default. OK phessler kn | |||
2020-09-15 | We have sockaddr_storage these days, get rid of isc_sockaddr_t. | Florian Obser | |
OK beck, "beautiful" deraadt | |||
2020-09-15 | The various sockaddr structures have length fields these days. | Florian Obser | |
OK beck | |||
2020-09-15 | we no longer need isc_netaddr_t | Florian Obser | |
OK beck, deraadt (who also OK'ed the previous two diffs) | |||
2020-09-15 | remove 3 unused protos; ok florian | Theo de Raadt | |
2020-09-15 | rewrite generating of IPv6 reverse names, lets us get rid of byaddr. | Florian Obser | |
OK beck | |||
2020-09-15 | move islinklocal, ismulticast, issitelocal from netaddr to sockaddr | Florian Obser | |
OK beck | |||
2020-09-15 | Fix botched conversion. This was not converted from parse_uint() which | Florian Obser | |
took a maxlength of 10 but isc_parse_uint32 which took a base of 10 and unlimited lenght. Use a maxval of 128 for prefix lengths instead. | |||
2020-09-15 | Remove igetnext prototype for the function does not exist. | Kevin Lo | |
ok deraadt@ | |||
2020-09-15 | bump version to 0.29.2, of the changes upstream made between 0.29.1 and 0.29.2 | Jasper Lievisse Adriaanse | |
there's effectively only one we didn't have yet which was handling for $C_PATH. turned out we also didn't use a bunch of others so add them too. bump copyright and remove $CSK$ marker while here tested in a ports build by aja@ | |||
2020-09-14 | Allow snmp mibtree to take one or more arguments who will be converted to | Martijn van Duren | |
an output format of your choosing. OK deraadt@ jan@ | |||
2020-09-14 | pf: Merge NOTES column into NAME column | kn | |
NOTES stays unused unless pf.conf(5) contains "set loginterface ..." in which case it merely amends what can otherwise be part of the NAME column. Merge the constant NOTES values for conditional counters into their NAME values to make the "pf" view look a little nicer and less empty by default; this also saves screen estate for possible future changes, e.g. we could increase column widths. OK tobhe | |||
2020-09-14 | Mechanically replace isc_boolean_t with int. | Florian Obser | |
OK deraadt | |||
2020-09-14 | Bunch of dead stores and otherwise unused stuff lets us get rid of | Florian Obser | |
unix/net.{c.h}. We need to sprinkle in a few #includes that net.h dragged in. OK deraadt | |||
2020-09-14 | Rewrite isc_time_microdiff() as uelapsed() and put it directly | Florian Obser | |
into dig sources, lets us get rid of unix/time.{c,h} OK deraadt | |||
2020-09-13 | Get rid of isc_parse_uint32() and replace it with strtonum. | Florian Obser | |
While here use the standard strtonum error messages. input & OK beck, OK kn | |||
2020-09-13 | remove unused lex states | Florian Obser | |
2020-09-13 | remove unused LEX_OPTs | Florian Obser | |
2020-09-13 | No need to refcount the parser, we never hold more than one reference. | Florian Obser | |
2020-09-12 | Let snmp df make use of the new displayhint code, so we don't print random | Martijn van Duren | |
garbage to the description column if the server gives us that. OK jan@ | |||
2020-09-12 | trailing whitespace | Jasper Lievisse Adriaanse | |
2020-09-12 | Remove unused callback mechanism / indirection. | Florian Obser | |
OK deraadt, millert | |||
2020-09-09 | For the hostkey confirmation message: | Damien Miller | |
> Are you sure you want to continue connecting (yes/no/[fingerprint])? compare the fingerprint case sensitively; spotted Patrik Lundin ok dtucker | |||
2020-09-09 | Element next-line scopes can nest. Consequently, even when closing | Ingo Schwarze | |
one element next-line scope, the MAN_ELINE flag must not yet be cleared if the parent macro is another element macro having next-line scope, or an assertion failure is caused if all this is wrapped in another macro that has block next-line scope, for example .TP. Bug found in an afl run performed by Jan Schreiber <jes at posteo dot de>. | |||
2020-09-09 | Wrap long lines, add space in front of goto label in openssl(1) ocsp.c | Kinichiro Inoguchi | |
2020-09-09 | Do not abuse assert(3) to react to absurd input; the purpose of assert(3) | Ingo Schwarze | |
only is to catch internal inconsistencies in the program itself. Issue found in an afl run performed by Jan Schreiber <jes at posteo dot de>. Instead, just cut down unreasonably wide spacing requested by the document to a narrower width. | |||
2020-09-09 | Change SSLv23_client_method to TLS_client_method openssl(1) ocsp | Kinichiro Inoguchi | |
2020-09-09 | Remove space between pointer '*' and variable name in ocsp.c | Kinichiro Inoguchi | |
2020-09-09 | Convert openssl(1) ocsp option handling | Kinichiro Inoguchi | |
input and ok tb@ | |||
2020-09-09 | Add option type OPTION_UL_VALUE_OR | Kinichiro Inoguchi | |
ok tb@ | |||
2020-09-09 | when writing an attestation blob for a FIDO key, record all the data | Damien Miller | |
needed to verify the attestation. Previously we were missing the "authenticator data" that is included in the signature. spotted by Ian Haken feedback Pedro Martelletto and Ian Haken; ok markus@ | |||
2020-09-08 | Allow -N without a command to change or add a note to an existing key. | Nicholas Marriott | |
2020-09-06 | After .ti, there are many reasons why the offset may change, so setting | Ingo Schwarze | |
it back later requires a guard against underflow, or subsequent assertions may fail. Issue found in an afl run performed by Jan Schreiber <jes at posteo dot de>. | |||
2020-09-06 | On tls_config_set_protocols() failure, include the output of | Theo Buehler | |
tls_config_error() in the errx() message. discussed with jsing | |||
2020-09-06 | Wording tweak from jsing | Theo Buehler | |