mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Check both variables, not the same one twice. Pointed out by Colin Hogben
This commit is contained in:
parent
fc3c5dae87
commit
277bab0c7b
@ -403,7 +403,7 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)
|
||||
infof(conn->data, "Using ssh private key file %s\n", sshc->rsa);
|
||||
}
|
||||
|
||||
if (sshc->rsa_pub && sshc->rsa_pub) {
|
||||
if (sshc->rsa_pub && sshc->rsa) {
|
||||
state(conn, SSH_AUTH_PKEY);
|
||||
} else {
|
||||
/* One or both aprint()'s might have failed,
|
||||
|
Loading…
Reference in New Issue
Block a user