]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
*-login: Don't set connection fd to non-blocking twice.
authorTimo Sirainen <tss@iki.fi>
Wed, 7 Oct 2009 22:47:55 +0000 (18:47 -0400)
committerTimo Sirainen <tss@iki.fi>
Wed, 7 Oct 2009 22:47:55 +0000 (18:47 -0400)
--HG--
branch : HEAD

src/login-common/client-common.c

index 80ed789201522154b723cdf524fbb7f57c4e3435..7a797087eee79609508cbd58b4f9f09edea0793a 100644 (file)
@@ -46,9 +46,6 @@ struct client *client_create(int fd, bool ssl, pool_t pool,
 
        i_assert(fd != -1);
 
-       /* always use nonblocking I/O */
-       net_set_nonblock(fd, TRUE);
-
        client = client_vfuncs.alloc(pool);
        client->v = client_vfuncs;
        if (client->v.auth_send_challenge == NULL)