0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-12 09:41:18 +02:00

Fix a typo for the login confirmation

This commit is contained in:
MusiKid 2021-04-07 11:14:07 +02:00 committed by musikid
parent a2e89f004f
commit 02a831ff8e
No known key found for this signature in database
GPG key ID: 7567D43648C6E2F4

View file

@ -247,7 +247,7 @@ int identify(pam_handle_t *pamh, int flags, int argc, const char **argv, bool au
int howdy_status = child_future.get();
if (howdy_status == 0) {
if (!reader.GetBoolean("section", "no_confirmation", true)) {
if (!reader.GetBoolean("core", "no_confirmation", true)) {
string identify_msg("Identified face as " + string(user_ptr));
conv_function(PAM_TEXT_INFO, identify_msg.c_str());
}