aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-10-22 17:26:54 -0400
committerAndreas Schneider <asn@cryptomilk.org>2013-10-23 09:55:09 +0200
commitf02bc4768ef33858073f4cc98ac406ee1623585b (patch)
tree2dde889ee462072aa9873fd608f85a6d22988a6b
parentbcb162816e91f79a740d2cb80c4f98c57a144ec9 (diff)
downloadlibssh-f02bc4768ef33858073f4cc98ac406ee1623585b.tar.gz
libssh-f02bc4768ef33858073f4cc98ac406ee1623585b.tar.xz
libssh-f02bc4768ef33858073f4cc98ac406ee1623585b.zip
auth: docs: Fix typo optoins -> options
I'm just getting my feet wet with this codebase. Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--src/auth.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/auth.c b/src/auth.c
index de7965d2..6664c203 100644
--- a/src/auth.c
+++ b/src/auth.c
@@ -355,7 +355,7 @@ int ssh_userauth_list(ssh_session session, const char *username)
* later.
*
* @note Most server implementations do not permit changing the username during
- * authentication. The username should only be set with ssh_optoins_set() only
+ * authentication. The username should only be set with ssh_options_set() only
* before you connect to the server.
*/
int ssh_userauth_none(ssh_session session, const char *username) {
@@ -478,7 +478,7 @@ fail:
* later.
*
* @note Most server implementations do not permit changing the username during
- * authentication. The username should only be set with ssh_optoins_set() only
+ * authentication. The username should only be set with ssh_options_set() only
* before you connect to the server.
*/
int ssh_userauth_try_publickey(ssh_session session,
@@ -640,7 +640,7 @@ fail:
* later.
*
* @note Most server implementations do not permit changing the username during
- * authentication. The username should only be set with ssh_optoins_set() only
+ * authentication. The username should only be set with ssh_options_set() only
* before you connect to the server.
*/
int ssh_userauth_publickey(ssh_session session,
@@ -961,7 +961,7 @@ struct ssh_agent_state_struct {
* later.
*
* @note Most server implementations do not permit changing the username during
- * authentication. The username should only be set with ssh_optoins_set() only
+ * authentication. The username should only be set with ssh_options_set() only
* before you connect to the server.
*/
int ssh_userauth_agent(ssh_session session,
@@ -1083,7 +1083,7 @@ struct ssh_auth_auto_state_struct {
* later.
*
* @note Most server implementations do not permit changing the username during
- * authentication. The username should only be set with ssh_optoins_set() only
+ * authentication. The username should only be set with ssh_options_set() only
* before you connect to the server.
*/
int ssh_userauth_publickey_auto(ssh_session session,
@@ -1297,7 +1297,7 @@ int ssh_userauth_publickey_auto(ssh_session session,
* later.
*
* @note Most server implementations do not permit changing the username during
- * authentication. The username should only be set with ssh_optoins_set() only
+ * authentication. The username should only be set with ssh_options_set() only
* before you connect to the server.
*
* @see ssh_userauth_none()