[dovecot-cvs] dovecot/src/auth password-scheme.c, 1.21.2.6, 1.21.2.7

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


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

Modified Files:
      Tag: branch_1_0
	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.21.2.6
retrieving revision 1.21.2.7
diff -u -d -r1.21.2.6 -r1.21.2.7
--- password-scheme.c	16 Feb 2007 13:12:01 -0000	1.21.2.6
+++ password-scheme.c	22 Feb 2007 14:35:57 -0000	1.21.2.7
@@ -497,7 +497,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