diff options
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/component-factory.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 06792e2f38..243b6d9d3a 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2000-07-02 Dan Winship <danw@helixcode.com> + * component-factory.c (create_vfolder_storage): Fix + filter_driver_new invocation. + * Makefile.am (bin_PROGRAMS): test-mail and test-thread should be noinst. diff --git a/mail/component-factory.c b/mail/component-factory.c index 92e61e9096..2b2f33eda5 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -242,7 +242,7 @@ create_vfolder_storage (EvolutionShellComponent *shell_component) user = g_strdup_printf ("%s/vfolders.xml", evolution_dir); system = g_strdup_printf("%s/evolution/vfoldertypes.xml", EVOLUTION_DATADIR); - fe = filter_driver_new(user, system, mail_uri_to_folder); + fe = filter_driver_new(system, user, mail_uri_to_folder); g_free(user); g_free(system); count = filter_driver_rule_count(fe); |