mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 03:22:48 -05:00
Allow rsakey_pubblob() to return the key comment.
(like r6433 but for SSH-1)
[originally from svn r6434]
[r6433 == 49d2cf19ac
]
This commit is contained in:
3
ssh.c
3
ssh.c
@ -3256,7 +3256,8 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen,
|
||||
/* Load the public half of ssh->cfg.keyfile so we notice if it's in Pageant */
|
||||
if (!filename_is_null(ssh->cfg.keyfile)) {
|
||||
if (!rsakey_pubblob(&ssh->cfg.keyfile,
|
||||
&s->publickey_blob, &s->publickey_bloblen, NULL))
|
||||
&s->publickey_blob, &s->publickey_bloblen,
|
||||
NULL, NULL))
|
||||
s->publickey_blob = NULL;
|
||||
} else
|
||||
s->publickey_blob = NULL;
|
||||
|
Reference in New Issue
Block a user