pam_mod #4

Open
shimun wants to merge 16 commits from pam_mod into master
Showing only changes of commit 11ac32d3f1 - Show all commits

View File

@ -166,10 +166,12 @@ impl PamServiceModule for PamFido2Luks {
args,
) {
Ok(_) => PamError::SUCCESS,
Err(e) => match e {
//TODO: output more detailed error
_ => PamError::AUTH_ERR,
},
Err(e) => {
eprintln!("{}", e);
match e {
_ => PamError::AUTH_ERR,
}
}
}
} else {
PamError::AUTH_ERR