mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 03:22:48 -05:00
Jacob's last-minute testing found a couple of trivial bugs in
import.c, and my attempts to reproduce them in cmdgen found another one there :-) [originally from svn r3847]
This commit is contained in:
2
cmdgen.c
2
cmdgen.c
@ -730,7 +730,7 @@ int main(int argc, char **argv)
|
||||
case SSH_KEYTYPE_OPENSSH:
|
||||
case SSH_KEYTYPE_SSHCOM:
|
||||
ssh2key = import_ssh2(&infilename, intype, passphrase);
|
||||
if (ssh2key)
|
||||
if (ssh2key && ssh2key != SSH2_WRONG_PASSPHRASE)
|
||||
error = NULL;
|
||||
else if (!error) {
|
||||
if (ssh2key == SSH2_WRONG_PASSPHRASE)
|
||||
|
Reference in New Issue
Block a user