Age | Commit message (Collapse) | Author |
|
pieces by jmc, pieces by me
|
|
i reformatted it to match 80w, and removed two functions that
had been used to populate usage: getdistoptlist and msgprusage;
ok millert
|
|
ok millert
|
|
ok millert
|
|
from jmc, ok kn
|
|
This way early calls to err(), failed() and usage() show "reset"
instead of "tset" if the program was invoked as reset(1).
Issue noted by jmc
ok kn
|
|
protocol (-x) default to AES. The old defaults are just not sane anymore.
OK sthen@
|
|
|
|
|
|
|
|
|
|
It is not sufficient to check for the EOF flag on a stream.
From https://github.com/onetrueawk/awk/pull/117
|
|
|
|
necessary anymore and causes problems, GitHub issue 2735.
|
|
|
|
|
|
|
|
|
|
This changes the meaning of the word-separators option - setting it to
the empty string is equivalent to the previous behavior. From Will Noble
in GitHub issue 2693.
|
|
|
|
GitHub issue 2699.
|
|
|
|
GitHub issue 2696.
|
|
from Jeongho Jang in GitHub issue 2695.
|
|
("command", "search" etc). From Anindya Mukherjee.
|
|
|
|
|
|
set, some compilers do not allow enums that are larger than int. GitHub
issue 2673.
|
|
blinking and sets the flag appropriately, means that it works whether
cnorm disables blinking or not. GitHub issue 2682.
|
|
simpler and fixes problems with vim when resized multiple times. GitHub
issue 2677.
|
|
|
|
Thomas Sattler.
1) Do not include the DECSLRM or DECFRA features for xterm; they will be
added instead if secondary DA responds as VT420 (this happens
already).
2) Set or reset the individual flags after terminal-overrides is
applied, so the user can properly disable them.
3) Add a capability for DECFRA ("Rect").
|
|
issue 2662.
|
|
these keys to applications inside tmux.
|
|
|
|
|
|
|
|
Handle modifier 9 as Meta, GitHub issue 2647.
|
|
by a signal. This should prevent the hang discovered by sthen@ wherein
sshd receives a SIGHUP while it has an unauthenticated child and goes
on to a blocking read on a notify_pipe. feedback deraadt@, ok djm@
|
|
multiple string arguments, ssh was only recording the first.
Reported by Lucas via bugs@
|
|
similar to the previous commit, this switches sshd_config parsing to
the newer tokeniser. Config parsing will be a little stricter wrt
quote correctness and directives appearing without arguments.
feedback and ok markus@
tested in snaps for the last five or so days - thanks Theo and those who
caught bugs
|
|
This fixes a couple of problems with the previous tokeniser,
strdelim()
1. strdelim() is permissive wrt accepting '=' characters. This is
intended to allow it to tokenise "Option=value" but because it
cannot keep state, it will incorrectly split "Opt=val=val2".
2. strdelim() has rudimentry handling of quoted strings, but it
is incomplete and inconsistent. E.g. it doesn't handle escaped
quotes inside a quoted string.
3. It has no support for stopping on a (unquoted) comment. Because
of this readconf.c r1.343 added chopping of lines at '#', but
this caused a regression because these characters may legitimately
appear inside quoted strings.
The new tokeniser is stricter is a number of cases, including #1 above
but previously it was also possible for some directives to appear
without arguments. AFAIK these were nonsensical in all cases, and the
new tokeniser refuses to accept them.
The new code handles quotes much better, permitting quoted space as
well as escaped closing quotes. Finally, comment handling should be
fixed - the tokeniser will terminate only on unquoted # characters.
feedback & ok markus@
tested in snaps for the last five or so days - thanks Theo and those who
caught bugs
|
|
Prevents values in config files from overriding values supplied on
the command line. bz#3319, ok markus.
|
|
encounters an unquoted comment.
Add some additional utility function for working with argument
vectors, since we'll be switching to using them to parse
ssh/sshd_config shortly.
ok markus@ as part of a larger diff; tested in snaps
|
|
being attempted for user authentication. Previously it would print
the certificate's path, whereas it was supposed to be showing the
private key's path. Patch from Alex Sherwin via GHPR247
|
|
Allows use of certificates with private keys held in a ssh-agent.
Reported by Miles Zhou in bz3524; ok dtucker@
|
|
RSA/SHA2 signatures for public key authentication but fails to advertise
this correctly via SSH2_MSG_EXT_INFO. This causes clients of these
server to incorrectly match PubkeyAcceptedAlgorithms and potentially
refuse to offer valid keys.
Reported by and based on patch from Gordon Messmer via bz3213, thanks
also for additional analysis by Jakub Jelen. ok dtucker
|
|
extension but fails when the client tries to invoke it.
Reported by Hector Martin via bz3318
|
|
operation that writes to the filesystem, which made it unavailable
in sftp-server read-only mode. Spotted by Hector Martin via bz3318
|
|
Also fix some typos.
ok djm@
|