diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-02-10 12:52:03 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-02-10 12:52:03 +0000 |
commit | 92fe932b70dba37dd33b290e260649f86433673f (patch) | |
tree | 28430cfa3fa3bbb1c69cf2338efd8d35369ec963 /usr.bin | |
parent | 265eccb736b515e8415c658edc7dd6bfbd539b62 (diff) |
offer passwd before s/key
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/auth2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index af6b58e08b4..6ffdb39afbb 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth2.c,v 1.39 2001/02/08 18:20:01 markus Exp $"); +RCSID("$OpenBSD: auth2.c,v 1.40 2001/02/10 12:52:02 markus Exp $"); #include <openssl/evp.h> @@ -89,12 +89,12 @@ Authmethod authmethods[] = { {"publickey", userauth_pubkey, &options.pubkey_authentication}, - {"keyboard-interactive", - userauth_kbdint, - &options.kbd_interactive_authentication}, {"password", userauth_passwd, &options.password_authentication}, + {"keyboard-interactive", + userauth_kbdint, + &options.kbd_interactive_authentication}, {NULL, NULL, NULL} }; |