summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--auth2.c8
2 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index bdd2bfc5c..e443f1c62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 - markus@cvs.openbsd.org 2001/02/07 22:35:46 3 - markus@cvs.openbsd.org 2001/02/07 22:35:46
4 [auth1.c auth2.c sshd.c] 4 [auth1.c auth2.c sshd.c]
5 move k_setpag() to a central place; ok dugsong@ 5 move k_setpag() to a central place; ok dugsong@
6 - markus@cvs.openbsd.org 2001/02/10 12:52:02
7 [auth2.c]
8 offer passwd before s/key
6 9
720010210 1020010210
8 - (djm) Sync sftp and scp stuff from OpenBSD: 11 - (djm) Sync sftp and scp stuff from OpenBSD:
@@ -3786,4 +3789,4 @@
3786 - Wrote replacements for strlcpy and mkdtemp 3789 - Wrote replacements for strlcpy and mkdtemp
3787 - Released 1.0pre1 3790 - Released 1.0pre1
3788 3791
3789$Id: ChangeLog,v 1.713 2001/02/10 21:27:11 mouring Exp $ 3792$Id: ChangeLog,v 1.714 2001/02/10 21:31:53 mouring Exp $
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