aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/authentication.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/authentication.dox b/doc/authentication.dox
index fbc2103b..30690e8c 100644
--- a/doc/authentication.dox
+++ b/doc/authentication.dox
@@ -285,7 +285,7 @@ int authenticate_kbdint(ssh_session session)
{
int rc;
- rc = ssh_userauth_none(session, NULL, NULL);
+ rc = ssh_userauth_none(session, NULL);
return rc;
}
@endcode
@@ -304,7 +304,7 @@ int test_several_auth_methods(ssh_session session)
{
int method, rc;
- rc = ssh_userauth_none(session, NULL, NULL);
+ rc = ssh_userauth_none(session, NULL);
if (rc != SSH_AUTH_SUCCESS) {
return rc;
}