From 47dea936b0a152583f21dcf810fb4c41192f5b8a Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 4 Feb 2009 17:43:39 -0500 Subject: [PATCH] Grew initial plain_auth_request pool size. --HG-- branch : HEAD --- src/auth/mech-plain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/mech-plain.c b/src/auth/mech-plain.c index f282e8729d..eda596ffca 100644 --- a/src/auth/mech-plain.c +++ b/src/auth/mech-plain.c @@ -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; -- 2.47.3