changeset 7114:9bbe74f6f2a9 HEAD

"Waiting for auth process" was supposed to come after 30s, not 30ms.
author Timo Sirainen <tss@iki.fi>
date Sun, 06 Jan 2008 01:34:51 +0200
parents d5dd0841b2db
children fc06e748f8e4
files src/imap-login/client.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap-login/client.c	Sun Jan 06 00:48:18 2008 +0200
+++ b/src/imap-login/client.c	Sun Jan 06 01:34:51 2008 +0200
@@ -40,7 +40,7 @@
 
 /* If we've been waiting auth server to respond for over this many milliseconds,
    send a "waiting" message. */
-#define AUTH_WAITING_TIMEOUT_MSECS 30
+#define AUTH_WAITING_TIMEOUT_MSECS (30*1000)
 
 #if CLIENT_LOGIN_IDLE_TIMEOUT_MSECS >= AUTH_REQUEST_TIMEOUT*1000
 #  error client idle timeout must be smaller than authentication timeout