netstar pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=f72aa5671d410f4514e17d485783f88af0015433

commit f72aa5671d410f4514e17d485783f88af0015433
Author: Al Poole <nets...@gmail.com>
Date:   Fri Mar 9 16:37:04 2018 +0000

    ckpasswd: fix build on OpenBSD (typo)
---
 src/bin/e_ckpasswd_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_ckpasswd_main.c b/src/bin/e_ckpasswd_main.c
index 8b6479a1c..31b04e738 100644
--- a/src/bin/e_ckpasswd_main.c
+++ b/src/bin/e_ckpasswd_main.c
@@ -26,7 +26,7 @@ _check_auth(uid_t uid, const char *guess)
    if (!pwent) return -1;
    if (!pwent->pw_passwd) return -1;
 
-   return crypt_checkpass(guess, pw_ent->pw_passwd);
+   return crypt_checkpass(guess, pwent->pw_passwd);
 }
 
 

-- 


Reply via email to