summaryrefslogtreecommitdiffstats
path: root/auth2.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-10 21:31:53 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-10 21:31:53 +0000
commitd1f20ec3683183332f78ef82487a982b929c60cc (patch)
tree3256baf81fa6f7bc053101c1bbe688918516af7e /auth2.c
parentf79aeffe3b8f58c3d7da0fba28f8eba867079e6d (diff)
- markus@cvs.openbsd.org 2001/02/10 12:52:02
[auth2.c] offer passwd before s/key
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/auth2.c b/auth2.c
index bc8c99bd..c887283a 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth2.c,v 1.37 2001/02/07 22:35:46 markus Exp $");
+RCSID("$OpenBSD: auth2.c,v 1.40 2001/02/10 12:52:02 markus Exp $");
#ifdef HAVE_OSF_SIA
# include <sia.h>
@@ -102,12 +102,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}
};