[dovecot-cvs] dovecot/src/auth password-scheme.c,1.28,1.29

tss at dovecot.org tss at dovecot.org
Thu Feb 22 14:36:03 UTC 2007


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

Modified Files:
	password-scheme.c 
Log Message:
Don't compare to PACKAGE_VERSION in lib/ core directly, rather make
module_dir_load() have the version string as parameter. Plugin version
checks can be skipped with version_ignore=yes.



Index: password-scheme.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/password-scheme.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- password-scheme.c	16 Feb 2007 13:12:05 -0000	1.28
+++ password-scheme.c	22 Feb 2007 14:36:01 -0000	1.29
@@ -519,7 +519,7 @@
 
 #ifdef HAVE_MODULES
 	scheme_modules = module_dir_load(AUTH_MODULE_DIR"/password",
-					 NULL, FALSE);
+					 NULL, FALSE, PACKAGE_VERSION);
 	module_dir_init(scheme_modules);
 	for (mod = scheme_modules; mod != NULL; mod = mod->next) {
 		t_push();



More information about the dovecot-cvs mailing list