summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2020-09-23Escape+Up and the other arrow keys should be kept as Escape+Up and notNicholas 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-22Move a sentence to the right command.Nicholas Marriott
2020-09-22Do not wrap at end of text when positioning at end of match because theNicholas Marriott
length may include trailing spaces.
2020-09-22Resize screen to the correct size (borders need to be taken off).Nicholas Marriott
2020-09-22Fix warnings on some platforms with %llx and add a new message to handleNicholas Marriott
64-bit client flags.
2020-09-21close stdin when forking after authentication too; ok markusDamien Miller
2020-09-20close stdout/stderr after "ssh -f ..." forkingDamien Miller
bz#3137, ok markus
2020-09-20cap channel input buffer size at 16MB; avoids high memory use whenDamien 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-18Free buffer earlier to avoid confusing some compilers, GitHub issueNicholas Marriott
2382.
2020-09-18Some other warnings, GitHub issue 2382.Nicholas Marriott
2020-09-18handle multiple messages in a single read()Damien Miller
PR#183 by Dennis Kaarsemaker; feedback and ok markus@
2020-09-18tweak the client hostkey preference ordering algorithm to prefer theDamien Miller
default ordering if the user has a key that matches the best-preference default algorithm. feedback and ok markus@
2020-09-16Add -q flag to unbind-key to hide errors, GitHub issue 2381.Nicholas Marriott
2020-09-16Fix some warnings, GitHub issue 2382.Nicholas Marriott
2020-09-16Remove 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 withpamela
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-15We have sockaddr_storage these days, get rid of isc_sockaddr_t.Florian Obser
OK beck, "beautiful" deraadt
2020-09-15The various sockaddr structures have length fields these days.Florian Obser
OK beck
2020-09-15we no longer need isc_netaddr_tFlorian Obser
OK beck, deraadt (who also OK'ed the previous two diffs)
2020-09-15remove 3 unused protos; ok florianTheo de Raadt
2020-09-15rewrite generating of IPv6 reverse names, lets us get rid of byaddr.Florian Obser
OK beck
2020-09-15move islinklocal, ismulticast, issitelocal from netaddr to sockaddrFlorian Obser
OK beck
2020-09-15Fix botched conversion. This was not converted from parse_uint() whichFlorian 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-15Remove igetnext prototype for the function does not exist.Kevin Lo
ok deraadt@
2020-09-15bump version to 0.29.2, of the changes upstream made between 0.29.1 and 0.29.2Jasper 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-14Allow snmp mibtree to take one or more arguments who will be converted toMartijn van Duren
an output format of your choosing. OK deraadt@ jan@
2020-09-14pf: Merge NOTES column into NAME columnkn
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-14Mechanically replace isc_boolean_t with int.Florian Obser
OK deraadt
2020-09-14Bunch of dead stores and otherwise unused stuff lets us get rid ofFlorian Obser
unix/net.{c.h}. We need to sprinkle in a few #includes that net.h dragged in. OK deraadt
2020-09-14Rewrite isc_time_microdiff() as uelapsed() and put it directlyFlorian Obser
into dig sources, lets us get rid of unix/time.{c,h} OK deraadt
2020-09-13Get 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-13remove unused lex statesFlorian Obser
2020-09-13remove unused LEX_OPTsFlorian Obser
2020-09-13No need to refcount the parser, we never hold more than one reference.Florian Obser
2020-09-12Let snmp df make use of the new displayhint code, so we don't print randomMartijn van Duren
garbage to the description column if the server gives us that. OK jan@
2020-09-12trailing whitespaceJasper Lievisse Adriaanse
2020-09-12Remove unused callback mechanism / indirection.Florian Obser
OK deraadt, millert
2020-09-09For 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-09Element next-line scopes can nest. Consequently, even when closingIngo 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-09Wrap long lines, add space in front of goto label in openssl(1) ocsp.cKinichiro Inoguchi
2020-09-09Do 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-09Change SSLv23_client_method to TLS_client_method openssl(1) ocspKinichiro Inoguchi
2020-09-09Remove space between pointer '*' and variable name in ocsp.cKinichiro Inoguchi
2020-09-09Convert openssl(1) ocsp option handlingKinichiro Inoguchi
input and ok tb@
2020-09-09Add option type OPTION_UL_VALUE_ORKinichiro Inoguchi
ok tb@
2020-09-09when writing an attestation blob for a FIDO key, record all the dataDamien 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-08Allow -N without a command to change or add a note to an existing key.Nicholas Marriott
2020-09-06After .ti, there are many reasons why the offset may change, so settingIngo 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-06On tls_config_set_protocols() failure, include the output ofTheo Buehler
tls_config_error() in the errx() message. discussed with jsing
2020-09-06Wording tweak from jsingTheo Buehler