aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-session.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-session.c')
-rw-r--r--camel/camel-session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-session.c b/camel/camel-session.c
index ff065b8c74..923d60c629 100644
--- a/camel/camel-session.c
+++ b/camel/camel-session.c
@@ -139,7 +139,7 @@ camel_session_get_store_from_provider (CamelSession *session, CamelProvider *pro
store = CAMEL_STORE (gtk_object_new (provider->object_type, NULL));
#warning set the url to a useful value.
- camel_store_init(store, session, NULL);
+ camel_store_init(store, session, NULL, NULL);
return store;
}
@@ -208,7 +208,7 @@ camel_session_get_store (CamelSession *session, const gchar *url_string)
if (url->protocol) {
new_store = camel_session_get_store_for_protocol (session, url->protocol);
if (new_store)
- camel_store_init (new_store, session, url_string);
+ camel_store_init (new_store, session, url_string, NULL);
}
g_url_free (url);