[dovecot-cvs] dovecot/src/lib module-dir.c,1.8,1.9

cras at dovecot.org cras at dovecot.org
Sun Dec 11 15:10:30 EET 2005


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

Modified Files:
	module-dir.c 
Log Message:
If we see libplugin.so, initialize it with plugin_init(), not
libplugin_init().



Index: module-dir.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/module-dir.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- module-dir.c	14 Aug 2005 19:40:29 -0000	1.8
+++ module-dir.c	11 Dec 2005 13:10:27 -0000	1.9
@@ -127,7 +127,7 @@
 			name += 3;
 
 		t_push();
-		name = t_strdup_until(d->d_name, p);
+		name = t_strdup_until(name, p);
 		path = t_strconcat(dir, "/", d->d_name, NULL);
 		module = module_load(path, name, require_init_funcs);
 		t_pop();



More information about the dovecot-cvs mailing list