From bed7dcb3ec2cdfd19d62c521fe0a7b9f492df0f9 Mon Sep 17 00:00:00 2001 From: Jan Pazdziora Date: Thu, 7 Mar 2019 15:16:27 +0100 Subject: [PATCH] ssh_userauth_publickey_auto requires three arguments. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Addressing client.c: In function ‘authenticate_pubkey’: client.c:70:8: error: too few arguments to function ‘ssh_userauth_publickey_auto’ rc = ssh_userauth_publickey_auto(session, NULL); ^~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from client.c:1: /usr/include/libssh/libssh.h:745:16: note: declared here LIBSSH_API int ssh_userauth_publickey_auto(ssh_session session, ^~~~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Jan Pazdziora Reviewed-by: Andreas Schneider --- doc/authentication.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/authentication.dox b/doc/authentication.dox index ec6f1936..fd76d71e 100644 --- a/doc/authentication.dox +++ b/doc/authentication.dox @@ -63,7 +63,7 @@ int authenticate_pubkey(ssh_session session) { int rc; - rc = ssh_userauth_publickey_auto(session, NULL); + rc = ssh_userauth_publickey_auto(session, NULL, NULL); if (rc == SSH_AUTH_ERROR) {