diff options
-rw-r--r-- | slock.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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"); |