[dovecot-cvs] dovecot/src/auth mech-plain.c,1.29,1.30

cras at dovecot.org cras at dovecot.org
Fri Apr 8 15:14:44 EEST 2005


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

Modified Files:
	mech-plain.c 
Log Message:
Several size_t -> unsigned int changes. Try to keep "unsigned int" for
counters, size_t for actual memory range sizes.



Index: mech-plain.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-plain.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- mech-plain.c	8 Jan 2005 21:37:32 -0000	1.29
+++ mech-plain.c	8 Apr 2005 12:14:41 -0000	1.30
@@ -27,7 +27,8 @@
 {
 	const char *authid, *authenid, *error;
 	char *pass;
-	size_t i, count, len;
+	size_t i, len;
+	int count;
 
 	/* authorization ID \0 authentication ID \0 pass.
 	   we'll ignore authorization ID for now. */



More information about the dovecot-cvs mailing list