changeset 25:d5c842a50827

Fix pam-sober message (not using HTTP)
author Chris Lee <clee@mg8.org>
date Fri, 13 Apr 2018 17:24:14 -0600
parents f6bde5107e48
children 31618a75f251
files pam-sober/src/lib.rs
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pam-sober/src/lib.rs	Thu Apr 12 09:41:51 2018 -0600
+++ b/pam-sober/src/lib.rs	Fri Apr 13 17:24:14 2018 -0600
@@ -32,7 +32,7 @@
 impl PamHooks for PamSober {
     // This function performs the task of authenticating the user.
     fn sm_authenticate(pamh: &PamHandle, _args: Vec<&CStr>, _flags: PamFlag) -> PamResultCode {
-        println!("Let's auth over HTTP");
+        println!("Let's make sure you're sober enough to perform basic addition");
 
         /* TODO: use args to change difficulty ;-)
         let args: HashMap<&str, &str> = args.iter().map(|s| {
@@ -79,4 +79,4 @@
         println!("account management");
         PamResultCode::PAM_SUCCESS
     }
-}
\ No newline at end of file
+}