aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--slock.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/slock.c b/slock.c
index 6dedc69..2d57e81 100644
--- a/slock.c
+++ b/slock.c
@@ -321,8 +321,9 @@ main(int argc, char **argv) {
321#endif 321#endif
322 322
323 hash = gethash(); 323 hash = gethash();
324 if (strlen(hash) < 2) 324 errno = 0;
325 die("slock: failed to get user password hash.\n"); 325 if (!crypt("", hash))
326 die("slock: crypt: %s\n", strerror(errno));
326 327
327 if (!(dpy = XOpenDisplay(NULL))) 328 if (!(dpy = XOpenDisplay(NULL)))
328 die("slock: cannot open display\n"); 329 die("slock: cannot open display\n");