[dovecot-cvs] dovecot/src/lib strfuncs.c,1.29,1.30

cras at procontrol.fi cras at procontrol.fi
Tue Jan 21 08:05:39 EET 2003


Update of /home/cvs/dovecot/src/lib
In directory danu:/tmp/cvs-serv3309/lib

Modified Files:
	strfuncs.c 
Log Message:
null_strcmp() was broken -> SORT was broken.



Index: strfuncs.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib/strfuncs.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- strfuncs.c	20 Jan 2003 14:52:51 -0000	1.29
+++ strfuncs.c	21 Jan 2003 06:05:37 -0000	1.30
@@ -469,7 +469,7 @@
 	if (s2 == NULL)
 		return 1;
 
-	return strcmp(s1, s1);
+	return strcmp(s1, s2);
 }
 
 int memcasecmp(const void *p1, const void *p2, size_t size)




More information about the dovecot-cvs mailing list