aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-02-22 02:39:21 +0800
committerDan Winship <danw@src.gnome.org>2000-02-22 02:39:21 +0800
commit0eff8e4321d63ef1dce20cceae8314b3628767a4 (patch)
treefc1041de3feaac309b47b9ce40019e3319dc9060
parentd3d2adb98ce84c89f5e2c648329764d55d8ec412 (diff)
downloadgsoc2013-evolution-0eff8e4321d63ef1dce20cceae8314b3628767a4.tar
gsoc2013-evolution-0eff8e4321d63ef1dce20cceae8314b3628767a4.tar.gz
gsoc2013-evolution-0eff8e4321d63ef1dce20cceae8314b3628767a4.tar.bz2
gsoc2013-evolution-0eff8e4321d63ef1dce20cceae8314b3628767a4.tar.lz
gsoc2013-evolution-0eff8e4321d63ef1dce20cceae8314b3628767a4.tar.xz
gsoc2013-evolution-0eff8e4321d63ef1dce20cceae8314b3628767a4.tar.zst
gsoc2013-evolution-0eff8e4321d63ef1dce20cceae8314b3628767a4.zip
update for CamelSession changes
svn path=/trunk/; revision=1889
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/session.c5
-rw-r--r--tests/test10.c8
-rw-r--r--tests/test11.c7
4 files changed, 23 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 4553049d29..198b2c612d 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2000-02-21 Dan Winship <danw@helixcode.com>
+
+ * session.c (session_store_new): Update session_store_new to
+ deal with the fact that camel_session_get_store takes a
+ CamelException now. Doesn't actually do anything with the
+ exception yet, because nothing else does yet either.
+
2000-02-19 Matt Loper <matt@helixcode.com>
* .cvsignore: added test-mail.
diff --git a/mail/session.c b/mail/session.c
index 24197951f3..e0390c380f 100644
--- a/mail/session.c
+++ b/mail/session.c
@@ -23,9 +23,12 @@ SessionStore *
session_store_new (const char *uri)
{
SessionStore *ss = g_new (SessionStore, 1);
+ CamelException *ex;
ss->session = camel_session_new ();
- ss->store = camel_session_get_store (ss->session, uri);
+ ex = camel_exception_new ();
+ ss->store = camel_session_get_store (ss->session, uri, ex);
+ camel_exception_free (ex);
g_assert (ss->session);
g_assert (ss->store);
diff --git a/tests/test10.c b/tests/test10.c
index a8835861d6..d8a8090138 100644
--- a/tests/test10.c
+++ b/tests/test10.c
@@ -81,8 +81,12 @@ main (int argc, char**argv)
camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so");
session = camel_session_new ();
- store = camel_session_get_store (session, store_url);
-
+ store = camel_session_get_store (session, store_url, ex);
+ if (camel_exception_get_id (ex)) {
+ printf ("Exception caught in camel_session_get_store\n"
+ "Full description : %s\n", camel_exception_get_description (ex));
+ return -1;
+ }
folder = camel_store_get_folder (store, "Inbox", ex);
if (camel_exception_get_id (ex)) {
diff --git a/tests/test11.c b/tests/test11.c
index 3c5fdeb9f4..de605365a6 100644
--- a/tests/test11.c
+++ b/tests/test11.c
@@ -41,7 +41,12 @@ main (int argc, char**argv)
camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so.0");
session = camel_session_new ();
- store = camel_session_get_store (session, store_url);
+ store = camel_session_get_store (session, store_url, ex);
+ if (camel_exception_get_id (ex)) {
+ printf ("Exception caught in camel_session_get_store\n"
+ "Full description : %s\n", camel_exception_get_description (ex));
+ return -1;
+ }
printf("get folder\n");