fixed agent login regression - fixes #10248, fixes #10174

This commit is contained in:
Eugene 2025-01-22 22:33:26 +01:00
parent d525374061
commit c4a514fc4a
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -58,7 +58,7 @@ function sshAuthTypeForMethod (m: AuthMethod): string {
case 'saved-password': return 'password'
case 'keyboard-interactive': return 'keyboard-interactive'
case 'publickey': return 'publickey'
case 'agent': return 'agent'
case 'agent': return 'publickey'
}
}