1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-01 11:26:52 +03:00

doc: Fix ssh_userauth_none() function signature.

Thanks to David Tibbe!

BUG: https://red.libssh.org/issues/151
This commit is contained in:
Andreas Schneider
2014-03-27 11:06:01 +01:00
parent d5aeebe323
commit 04543c9dbc

View File

@ -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;
}