]> git.armaanb.net Git - slock.git/blobdiff - slock.c
Use explicit strcmp() instead of inlining it
[slock.git] / slock.c
diff --git a/slock.c b/slock.c
index 6dbf966f69b0ec45aad6d0e4b930ac82de255b3c..4d7f06fe9a8fc4dc3b6904fc8231c065614a17d8 100644 (file)
--- a/slock.c
+++ b/slock.c
@@ -100,7 +100,7 @@ gethash(void)
        hash = pw->pw_passwd;
 
 #if HAVE_SHADOW_H
-       if (hash[0] == 'x' && hash[1] == '\0') {
+       if (!strcmp(hash, "x")) {
                struct spwd *sp;
                if (!(sp = getspnam(pw->pw_name)))
                        die("slock: getspnam: cannot retrieve shadow entry. "
@@ -108,7 +108,7 @@ gethash(void)
                hash = sp->sp_pwdp;
        }
 #else
-       if (hash[0] == '*' && hash[1] == '\0') {
+       if (!strcmp(hash, "*")) {
 #ifdef __OpenBSD__
                if (!(pw = getpwuid_shadow(getuid())))
                        die("slock: getpwnam_shadow: cannot retrieve shadow entry. "