[dovecot-cvs] dovecot/src/auth auth-request.c, 1.39, 1.40 mech-apop.c, 1.17, 1.18 mech-gssapi.c, 1.1, 1.2 mech-login.c, 1.13, 1.14 mech-ntlm.c, 1.20, 1.21 mech-plain.c, 1.32, 1.33 mech-rpa.c, 1.20, 1.21

cras at dovecot.org cras at dovecot.org
Fri Oct 28 15:03:10 EEST 2005


Update of /var/lib/cvs/dovecot/src/auth
In directory talvi:/tmp/cvs-serv24527

Modified Files:
	auth-request.c mech-apop.c mech-gssapi.c mech-login.c 
	mech-ntlm.c mech-plain.c mech-rpa.c 
Log Message:
Use a bit larger initial pool sizes



Index: auth-request.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/auth-request.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- auth-request.c	27 Oct 2005 15:57:31 -0000	1.39
+++ auth-request.c	28 Oct 2005 12:03:07 -0000	1.40
@@ -43,7 +43,7 @@
 	struct auth_request *auth_request;
 	pool_t pool;
 
-	pool = pool_alloconly_create("auth_request", 512);
+	pool = pool_alloconly_create("auth_request", 1024);
 	auth_request = p_new(pool, struct auth_request, 1);
 	auth_request->pool = pool;
 

Index: mech-apop.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-apop.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- mech-apop.c	27 Oct 2005 14:57:50 -0000	1.17
+++ mech-apop.c	28 Oct 2005 12:03:07 -0000	1.18
@@ -149,7 +149,7 @@
 	struct apop_auth_request *request;
 	pool_t pool;
 
-	pool = pool_alloconly_create("apop_auth_request", 512);
+	pool = pool_alloconly_create("apop_auth_request", 1024);
 	request = p_new(pool, struct apop_auth_request, 1);
 	request->pool = pool;
 

Index: mech-gssapi.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-gssapi.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mech-gssapi.c	27 Oct 2005 14:57:51 -0000	1.1
+++ mech-gssapi.c	28 Oct 2005 12:03:07 -0000	1.2
@@ -82,7 +82,7 @@
 	struct gssapi_auth_request *request;
 	pool_t pool;
 
-	pool = pool_alloconly_create("gssapi_auth_request", 512);
+	pool = pool_alloconly_create("gssapi_auth_request", 1024);
 	request = p_new(pool, struct gssapi_auth_request, 1);
 	request->pool = pool;
 

Index: mech-login.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-login.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- mech-login.c	27 Oct 2005 14:57:51 -0000	1.13
+++ mech-login.c	28 Oct 2005 12:03:07 -0000	1.14
@@ -76,7 +76,7 @@
 	struct auth_request *request;
 	pool_t pool;
 
-	pool = pool_alloconly_create("login_auth_request", 512);
+	pool = pool_alloconly_create("login_auth_request", 1024);
 	request = p_new(pool, struct auth_request, 1);
 	request->pool = pool;
 	return request;

Index: mech-ntlm.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-ntlm.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- mech-ntlm.c	27 Oct 2005 14:57:51 -0000	1.20
+++ mech-ntlm.c	28 Oct 2005 12:03:07 -0000	1.21
@@ -268,7 +268,7 @@
 	struct ntlm_auth_request *request;
 	pool_t pool;
 
-	pool = pool_alloconly_create("ntlm_auth_request", 512);
+	pool = pool_alloconly_create("ntlm_auth_request", 1024);
 	request = p_new(pool, struct ntlm_auth_request, 1);
 	request->pool = pool;
 

Index: mech-plain.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-plain.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- mech-plain.c	27 Oct 2005 14:57:51 -0000	1.32
+++ mech-plain.c	28 Oct 2005 12:03:07 -0000	1.33
@@ -92,7 +92,7 @@
         struct auth_request *request;
 	pool_t pool;
 
-	pool = pool_alloconly_create("plain_auth_request", 512);
+	pool = pool_alloconly_create("plain_auth_request", 1024);
 	request = p_new(pool, struct auth_request, 1);
 	request->pool = pool;
 	return request;

Index: mech-rpa.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-rpa.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- mech-rpa.c	27 Oct 2005 14:57:51 -0000	1.20
+++ mech-rpa.c	28 Oct 2005 12:03:07 -0000	1.21
@@ -599,7 +599,7 @@
 	struct rpa_auth_request *request;
 	pool_t pool;
 
-	pool = pool_alloconly_create("rpa_auth_request", 512);
+	pool = pool_alloconly_create("rpa_auth_request", 1024);
 	request = p_new(pool, struct rpa_auth_request, 1);
 	request->pool = pool;
 	request->phase = 0;



More information about the dovecot-cvs mailing list