[dovecot-cvs] dovecot/src/deliver deliver.c,1.60,1.61

tss at dovecot.org tss at dovecot.org
Fri Mar 30 16:40:32 EEST 2007


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

Modified Files:
	deliver.c 
Log Message:
Removed mail_storage_create_with_data(). mail_storage_create() with
driver=NULL behaves the same way. Removed parameters from
mail_storage.create(), they're now put into the storage structure before
calling create().



Index: deliver.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/deliver/deliver.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- deliver.c	26 Mar 2007 00:10:08 -0000	1.60
+++ deliver.c	30 Mar 2007 13:40:30 -0000	1.61
@@ -660,8 +660,8 @@
 
 	/* FIXME: how should we handle namespaces? */
 	mail_storage_parse_env(&flags, &lock_method);
-	storage = mail_storage_create_with_data(mail_env, destination,
-						flags, lock_method);
+	storage = mail_storage_create(NULL, mail_env, destination,
+				      flags, lock_method);
 	if (storage == NULL) {
 		i_fatal_status(EX_TEMPFAIL,
 			"Failed to create storage for '%s' with mail '%s'",



More information about the dovecot-cvs mailing list