Displaying 1 result from an estimated 1 matches for "ssh_agent_rsa_response".
2000 Oct 08
1
OpenSSH-2.2.0 problem with ssh.com ssh-agent2
...f (type != code2) {
fatal("Bad authentication reply message type: %d", type);
***************
*** 322,328 ****
}
type = buffer_get_char(&buffer);
! if (agent_failed(type)) {
log("Agent admitted failure to authenticate using the key.");
} else if (type != SSH_AGENT_RSA_RESPONSE) {
fatal("Bad authentication response: %d", type);
--- 322,328 ----
}
type = buffer_get_char(&buffer);
! if (type == SSH_AGENT_FAILURE) {
log("Agent admitted failure to authenticate using the key.");
} else if (type != SSH_AGENT_RSA_RESPONSE) {
fatal...