diff options
author | Henrik Nord <[email protected]> | 2012-10-01 11:20:41 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2012-10-01 11:20:44 +0200 |
commit | af9a8a011fd06ae54187bae73192c52495090933 (patch) | |
tree | 12a2575104a714b31f6090467b92c283c6496acf /lib/ssh | |
parent | 56fad3f0d4d17194e772e04ac6840354e6377dfc (diff) | |
parent | 4ed113fb4918c3fb886a87ca0e2063ee81cc25ca (diff) | |
download | otp-af9a8a011fd06ae54187bae73192c52495090933.tar.gz otp-af9a8a011fd06ae54187bae73192c52495090933.tar.bz2 otp-af9a8a011fd06ae54187bae73192c52495090933.zip |
Merge branch 'dg/keyboard_interactive'
* dg/keyboard_interactive:
fix typo in keyboard-interactive string
OTP-10456
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/doc/src/ssh.xml | 2 | ||||
-rw-r--r-- | lib/ssh/src/ssh_auth.hrl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/doc/src/ssh.xml b/lib/ssh/doc/src/ssh.xml index b84b3a3dcb..0133250979 100644 --- a/lib/ssh/doc/src/ssh.xml +++ b/lib/ssh/doc/src/ssh.xml @@ -265,7 +265,7 @@ <item> <p>Comma separated string that determines which authentication methodes that the server should support and in what order they will be tried. Defaults to - <c><![CDATA["publickey,keyboard_interactive,password"]]></c></p> + <c><![CDATA["publickey,keyboard-interactive,password"]]></c></p> </item> <tag><c><![CDATA[{user_passwords, [{string() = User, string() = Password}]}]]></c></tag> <item> diff --git a/lib/ssh/src/ssh_auth.hrl b/lib/ssh/src/ssh_auth.hrl index 7d7bad4436..e74ee10041 100644 --- a/lib/ssh/src/ssh_auth.hrl +++ b/lib/ssh/src/ssh_auth.hrl @@ -21,7 +21,7 @@ %%% Description: Ssh User Authentication Protocol --define(SUPPORTED_AUTH_METHODS, "publickey,keyboard_interactive,password"). +-define(SUPPORTED_AUTH_METHODS, "publickey,keyboard-interactive,password"). -define(PREFERRED_PK_ALG, ssh_rsa). |