aboutsummaryrefslogtreecommitdiff
path: root/doc/authentication.dox
diff options
context:
space:
mode:
authorJan Pazdziora <jpazdziora@redhat.com>2019-03-07 15:16:27 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-03-11 16:19:26 +0100
commitbed7dcb3ec2cdfd19d62c521fe0a7b9f492df0f9 (patch)
tree4365beefbd83f561308a70dd729cfe6aa6981bb1 /doc/authentication.dox
parent104c9dca3f963440e4f1d1170c9244682e700e28 (diff)
downloadlibssh-bed7dcb3ec2cdfd19d62c521fe0a7b9f492df0f9.tar.gz
libssh-bed7dcb3ec2cdfd19d62c521fe0a7b9f492df0f9.tar.xz
libssh-bed7dcb3ec2cdfd19d62c521fe0a7b9f492df0f9.zip
ssh_userauth_publickey_auto requires three arguments.
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 <jpazdziora@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'doc/authentication.dox')
-rw-r--r--doc/authentication.dox2
1 files changed, 1 insertions, 1 deletions
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)
{