summaryrefslogtreecommitdiff
path: root/daemon/verify-crypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/verify-crypt.c')
-rw-r--r--daemon/verify-crypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/verify-crypt.c b/daemon/verify-crypt.c
index 7cbcdf02..68d40286 100644
--- a/daemon/verify-crypt.c
+++ b/daemon/verify-crypt.c
@@ -110,7 +110,7 @@ gdm_verify_user (GdmDisplay *d,
gdm_slave_greeter_ctl_no_ret (GDM_STOPTIMER, "");
if (pwent == NULL) {
- sleep (GdmRetryDelay);
+ gdm_sleep_no_signal (GdmRetryDelay);
gdm_error (_("Couldn't authenticate user"));
/* FIXME: Hmm, how are we sure that the login is username
* and password. That is the most common case but not
@@ -131,7 +131,7 @@ gdm_verify_user (GdmDisplay *d,
/* Check whether password is valid */
if (ppasswd == NULL || (ppasswd[0] != '\0' &&
strcmp (crypt (passwd, ppasswd), ppasswd) != 0)) {
- sleep (GdmRetryDelay);
+ gdm_sleep_no_signal (GdmRetryDelay);
/* FIXME: Hmm, how are we sure that the login is username
* and password. That is the most common case but not
* necessarily true, this message needs to be changed