summaryrefslogtreecommitdiff
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 bc8c99bda..c887283a3 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth2.c,v 1.37 2001/02/07 22:35:46 markus Exp $"); 26RCSID("$OpenBSD: auth2.c,v 1.40 2001/02/10 12:52:02 markus Exp $");
27 27
28#ifdef HAVE_OSF_SIA 28#ifdef HAVE_OSF_SIA
29# include <sia.h> 29# include <sia.h>
@@ -102,12 +102,12 @@ Authmethod authmethods[] = {
102 {"publickey", 102 {"publickey",
103 userauth_pubkey, 103 userauth_pubkey,
104 &options.pubkey_authentication}, 104 &options.pubkey_authentication},
105 {"keyboard-interactive",
106 userauth_kbdint,
107 &options.kbd_interactive_authentication},
108 {"password", 105 {"password",
109 userauth_passwd, 106 userauth_passwd,
110 &options.password_authentication}, 107 &options.password_authentication},
108 {"keyboard-interactive",
109 userauth_kbdint,
110 &options.kbd_interactive_authentication},
111 {NULL, NULL, NULL} 111 {NULL, NULL, NULL}
112}; 112};
113 113