mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-11-16 23:05:58 +01:00
auth: pam fallback log message and always call pam_end after pam_authenticate (#399)
* auth: make the fallback to sudo error more descriptive * auth: always call pam_end after pam_authenticate
This commit is contained in:
parent
01bf48ed96
commit
b862bbce71
1 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ CAuth::CAuth() {
|
|||
m_sPamModule = *PPAMMODULE;
|
||||
|
||||
if (!std::filesystem::exists(std::filesystem::path("/etc/pam.d/") / m_sPamModule)) {
|
||||
Debug::log(ERR, "Pam module \"{}\" not found! Falling back to \"su\"", m_sPamModule);
|
||||
Debug::log(ERR, "Pam module \"/etc/pam.d/{}\" does not exist! Falling back to \"/etc/pam.d/su\"", m_sPamModule);
|
||||
m_sPamModule = "su";
|
||||
}
|
||||
}
|
||||
|
@ -91,6 +91,8 @@ bool CAuth::auth() {
|
|||
}
|
||||
|
||||
ret = pam_authenticate(handle, 0);
|
||||
pam_end(handle, ret);
|
||||
handle = nullptr;
|
||||
|
||||
m_sConversationState.waitingForPamAuth = false;
|
||||
|
||||
|
@ -101,8 +103,6 @@ bool CAuth::auth() {
|
|||
return false;
|
||||
}
|
||||
|
||||
ret = pam_end(handle, ret);
|
||||
|
||||
m_sConversationState.success = true;
|
||||
m_sConversationState.failText = "Successfully authenticated";
|
||||
Debug::log(LOG, "auth: authenticated for {}", m_sPamModule);
|
||||
|
|
Loading…
Reference in a new issue