]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Grew initial plain_auth_request pool size.
authorTimo Sirainen <tss@iki.fi>
Wed, 4 Feb 2009 22:43:39 +0000 (17:43 -0500)
committerTimo Sirainen <tss@iki.fi>
Wed, 4 Feb 2009 22:43:39 +0000 (17:43 -0500)
--HG--
branch : HEAD

src/auth/mech-plain.c

index f282e8729df7eb8f2749f54f6c0b0ba38b1905e6..eda596ffca766c0a7d8eb62d3e21ec55a2d735f8 100644 (file)
@@ -69,7 +69,7 @@ static struct auth_request *mech_plain_auth_new(void)
         struct auth_request *request;
        pool_t pool;
 
-       pool = pool_alloconly_create("plain_auth_request", 1024);
+       pool = pool_alloconly_create("plain_auth_request", 2048);
        request = p_new(pool, struct auth_request, 1);
        request->pool = pool;
        return request;