From 1c25bf035b3908e22f89598b64f6d493a91eb9a0 Mon Sep 17 00:00:00 2001 From: MusiKid Date: Wed, 7 Apr 2021 11:18:53 +0200 Subject: [PATCH] Fix typo in comments --- src/pam/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pam/main.cc b/src/pam/main.cc index aa2e1af..a634a0f 100644 --- a/src/pam/main.cc +++ b/src/pam/main.cc @@ -70,7 +70,7 @@ int on_howdy_auth(int code, function conv_function) { conv_function(PAM_ERROR_MSG, "Face detection image too dark"); syslog(LOG_INFO, "Failure, image too dark"); break; - // Otherwise, we can't discribe what happend but it wasn't successful + // Otherwise, we can't describe what happened but it wasn't successful default: conv_function(PAM_ERROR_MSG, string("Unknown error:" + to_string(code)).c_str());