From: jacob Date: Fri, 11 Mar 2005 15:24:09 +0000 (+0000) Subject: Make it clearer which protocol version various bugs apply to. X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/19f47a7ddebe8f301d4325dbe84f2346ee3183ca Make it clearer which protocol version various bugs apply to. git-svn-id: svn://svn.tartarus.org/sgt/putty@5490 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/config.c b/config.c index 95353978..0f712019 100644 --- a/config.c +++ b/config.c @@ -1842,10 +1842,10 @@ void setup_config_box(struct controlbox *b, struct sesslist *sesslist, ctrl_droplist(s, "Requires padding on SSH-2 RSA signatures", 'p', 20, HELPCTX(ssh_bugs_rsapad2), sshbug_handler, I(offsetof(Config,sshbug_rsapad2))); - ctrl_droplist(s, "Misuses the session ID in PK auth", 'n', 20, + ctrl_droplist(s, "Misuses the session ID in SSH-2 PK auth", 'n', 20, HELPCTX(ssh_bugs_pksessid2), sshbug_handler, I(offsetof(Config,sshbug_pksessid2))); - ctrl_droplist(s, "Handles key re-exchange badly", 'k', 20, + ctrl_droplist(s, "Handles SSH-2 key re-exchange badly", 'k', 20, HELPCTX(ssh_bugs_rekey2), sshbug_handler, I(offsetof(Config,sshbug_rekey2))); } diff --git a/doc/config.but b/doc/config.but index 157deaf9..0b506898 100644 --- a/doc/config.but +++ b/doc/config.but @@ -2670,7 +2670,7 @@ to talking to OpenSSH. This is an SSH-2-specific bug. -\S{config-ssh-bug-pksessid2} \q{Misuses the session ID in PK auth} +\S{config-ssh-bug-pksessid2} \q{Misuses the session ID in SSH-2 PK auth} \cfg{winhelp-topic}{ssh.bugs.pksessid2} @@ -2688,7 +2688,7 @@ SSH-2 public-key authentication will fail. This is an SSH-2-specific bug. -\S{config-ssh-bug-rekey} \q{Handles key re-exchange badly} +\S{config-ssh-bug-rekey} \q{Handles SSH-2 key re-exchange badly} \cfg{winhelp-topic}{ssh.bugs.rekey2} diff --git a/ssh.c b/ssh.c index 41ef92fa..828b1ce8 100644 --- a/ssh.c +++ b/ssh.c @@ -2112,7 +2112,7 @@ static void ssh_detect_bugs(Ssh ssh, char *vstring) * an AUTH_RSA message. */ ssh->remote_bugs |= BUG_CHOKES_ON_RSA; - logevent("We believe remote version can't handle RSA authentication"); + logevent("We believe remote version can't handle SSH-1 RSA authentication"); } if (ssh->cfg.sshbug_hmac2 == FORCE_ON ||