diff options
Diffstat (limited to 'libssh/auth.c')
-rw-r--r-- | libssh/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/auth.c b/libssh/auth.c index c83dea1..9293b32 100644 --- a/libssh/auth.c +++ b/libssh/auth.c @@ -836,7 +836,7 @@ int ssh_userauth_autopubkey(SSH_SESSION *session, const char *passphrase) { for (i = 0, pubkey = try_publickey_from_file(session, keytab[i], &privkeyfile, &type); i < size; - pubkey = try_publickey_from_file(session, keytab[++i], + pubkey = try_publickey_from_file(session, keytab[i++], &privkeyfile, &type)) { if (pubkey == NULL) { continue; |