slock
simple X display locker utility
git clone https://9o.is/git/slock.git
commit 471c88c4af606f71c2714e08a03d366c4a6cf520 parent ce9d8e7eb6975cddf3a06c6a713baff10c5b5072 Author: FRIGN <dev@frign.de> Date: Sun, 2 Oct 2016 00:10:45 +0200 Use explicit strcmp() instead of inlining it Makes it a tad more readable; the previous "optimization" will be done by the compiler anyway. Diffstat:
| M | slock.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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. "