mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02:00
- markus@cvs.openbsd.org 2001/02/10 12:52:02
[auth2.c] offer passwd before s/key
This commit is contained in:
parent
f79aeffe3b
commit
d1f20ec368
@ -3,6 +3,9 @@
|
|||||||
- markus@cvs.openbsd.org 2001/02/07 22:35:46
|
- markus@cvs.openbsd.org 2001/02/07 22:35:46
|
||||||
[auth1.c auth2.c sshd.c]
|
[auth1.c auth2.c sshd.c]
|
||||||
move k_setpag() to a central place; ok dugsong@
|
move k_setpag() to a central place; ok dugsong@
|
||||||
|
- markus@cvs.openbsd.org 2001/02/10 12:52:02
|
||||||
|
[auth2.c]
|
||||||
|
offer passwd before s/key
|
||||||
|
|
||||||
20010210
|
20010210
|
||||||
- (djm) Sync sftp and scp stuff from OpenBSD:
|
- (djm) Sync sftp and scp stuff from OpenBSD:
|
||||||
@ -3786,4 +3789,4 @@
|
|||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.713 2001/02/10 21:27:11 mouring Exp $
|
$Id: ChangeLog,v 1.714 2001/02/10 21:31:53 mouring Exp $
|
||||||
|
8
auth2.c
8
auth2.c
@ -23,7 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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
|
#ifdef HAVE_OSF_SIA
|
||||||
# include <sia.h>
|
# include <sia.h>
|
||||||
@ -102,12 +102,12 @@ Authmethod authmethods[] = {
|
|||||||
{"publickey",
|
{"publickey",
|
||||||
userauth_pubkey,
|
userauth_pubkey,
|
||||||
&options.pubkey_authentication},
|
&options.pubkey_authentication},
|
||||||
{"keyboard-interactive",
|
|
||||||
userauth_kbdint,
|
|
||||||
&options.kbd_interactive_authentication},
|
|
||||||
{"password",
|
{"password",
|
||||||
userauth_passwd,
|
userauth_passwd,
|
||||||
&options.password_authentication},
|
&options.password_authentication},
|
||||||
|
{"keyboard-interactive",
|
||||||
|
userauth_kbdint,
|
||||||
|
&options.kbd_interactive_authentication},
|
||||||
{NULL, NULL, NULL}
|
{NULL, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user