mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02:00
- (djm) Disable PAM kbd-int auth if privsep is turned on (it doesn't work)
This commit is contained in:
parent
0502a471e0
commit
ffc868ff83
@ -1,3 +1,6 @@
|
|||||||
|
20020508
|
||||||
|
- (djm) Disable PAM kbd-int auth if privsep is turned on (it doesn't work)
|
||||||
|
|
||||||
20020507
|
20020507
|
||||||
- (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is
|
- (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is
|
||||||
called. Report by Chris Maxwell <maxwell@cs.dal.ca>
|
called. Report by Chris Maxwell <maxwell@cs.dal.ca>
|
||||||
@ -544,4 +547,4 @@
|
|||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2098 2002/05/08 23:04:14 tim Exp $
|
$Id: ChangeLog,v 1.2099 2002/05/09 05:59:13 djm Exp $
|
||||||
|
2
auth2.c
2
auth2.c
@ -121,6 +121,8 @@ do_authentication2(void)
|
|||||||
options.kbd_interactive_authentication = 1;
|
options.kbd_interactive_authentication = 1;
|
||||||
if (options.pam_authentication_via_kbd_int)
|
if (options.pam_authentication_via_kbd_int)
|
||||||
options.kbd_interactive_authentication = 1;
|
options.kbd_interactive_authentication = 1;
|
||||||
|
if (use_privsep)
|
||||||
|
options.pam_authentication_via_kbd_int = 0;
|
||||||
|
|
||||||
dispatch_init(&dispatch_protocol_error);
|
dispatch_init(&dispatch_protocol_error);
|
||||||
dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
|
dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user