mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix a braino in mm_answer_pam_respond() which would cause sshd to abort if
PAM authentication failed due to an incorrect response.
This commit is contained in:
parent
8479adc1d3
commit
669e440e50
1 changed files with 1 additions and 1 deletions
|
|
@ -831,7 +831,7 @@ mm_answer_pam_respond(int socket, Buffer *m)
|
|||
auth_method = "keyboard-interactive/pam";
|
||||
if (ret == 0)
|
||||
pam_authok = pam_ctxt;
|
||||
return (ret);
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Reference in a new issue