aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imapp/camel-imapp-provider.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/providers/imapp/camel-imapp-provider.c')
-rw-r--r--camel/providers/imapp/camel-imapp-provider.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/providers/imapp/camel-imapp-provider.c b/camel/providers/imapp/camel-imapp-provider.c
index 6b0cdd2d43..bdf33ec1da 100644
--- a/camel/providers/imapp/camel-imapp-provider.c
+++ b/camel/providers/imapp/camel-imapp-provider.c
@@ -72,7 +72,7 @@ CamelServiceAuthType camel_imapp_password_authtype = {
};
void
-camel_imapp_module_init(CamelSession *session)
+camel_imapp_module_init(void)
{
extern void camel_exception_setup(void);
@@ -87,11 +87,11 @@ camel_imapp_module_init(CamelSession *session)
/* TEMPORARY */
camel_exception_setup();
- camel_session_register_provider(session, &imapp_provider);
+ camel_provider_register(&imapp_provider);
}
void
-camel_provider_module_init(CamelSession *session)
+camel_provider_module_init(void)
{
- camel_imapp_module_init(session);
+ camel_imapp_module_init();
}