[dovecot-cvs] dovecot/src/lib module-dir.c,1.13,1.14

cras at dovecot.org cras at dovecot.org
Tue Feb 7 12:07:45 EET 2006


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

Modified Files:
	module-dir.c 
Log Message:
Fix to comparing plugin names which begin with "lib".



Index: module-dir.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/module-dir.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- module-dir.c	5 Feb 2006 14:14:12 -0000	1.13
+++ module-dir.c	7 Feb 2006 10:07:42 -0000	1.14
@@ -103,7 +103,7 @@
 	if (strncmp(n1, "lib", 3) == 0)
 		n1 += 3;
 	if (strncmp(n2, "lib", 3) == 0)
-		n1 += 3;
+		n2 += 3;
 
 	return strcmp(n1, n2);
 }



More information about the dovecot-cvs mailing list