aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-06-03 02:13:17 +0800
committerDan Winship <danw@src.gnome.org>2000-06-03 02:13:17 +0800
commita9959a65c24cb76ee1d770b6a453486e80d55daf (patch)
treec042ed6763146cf436da9eb4977f2feaac398c7c
parent4cf5bbfa5a228f47256e74a7a11180e2d512561b (diff)
downloadgsoc2013-evolution-a9959a65c24cb76ee1d770b6a453486e80d55daf.tar
gsoc2013-evolution-a9959a65c24cb76ee1d770b6a453486e80d55daf.tar.gz
gsoc2013-evolution-a9959a65c24cb76ee1d770b6a453486e80d55daf.tar.bz2
gsoc2013-evolution-a9959a65c24cb76ee1d770b6a453486e80d55daf.tar.lz
gsoc2013-evolution-a9959a65c24cb76ee1d770b6a453486e80d55daf.tar.xz
gsoc2013-evolution-a9959a65c24cb76ee1d770b6a453486e80d55daf.tar.zst
gsoc2013-evolution-a9959a65c24cb76ee1d770b6a453486e80d55daf.zip
Use camel_service_connect, not connect_with_url, since we already passed
* mail-ops.c (fetch_mail): Use camel_service_connect, not connect_with_url, since we already passed the URL into camel_session_get_store. svn path=/trunk/; revision=3392
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/mail-ops.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index cc3a3d2e36..ce108b38b8 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2000-06-02 Dan Winship <danw@helixcode.com>
+
+ * mail-ops.c (fetch_mail): Use camel_service_connect, not
+ connect_with_url, since we already passed the URL into
+ camel_session_get_store.
+
2000-06-02 Christopher James Lahey <clahey@helixcode.com>
* message-list.c: Use camel_folder_free_summary instead of
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 12c2162110..c054bcdee1 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -159,8 +159,7 @@ fetch_mail (GtkWidget *button, gpointer user_data)
mail_exception_dialog ("Unable to get new mail", ex, fb);
goto cleanup;
}
- camel_service_connect_with_url (CAMEL_SERVICE (store),
- url, ex);
+ camel_service_connect (CAMEL_SERVICE (store), ex);
if (camel_exception_get_id (ex) != CAMEL_EXCEPTION_NONE) {
if (camel_exception_get_id (ex) != CAMEL_EXCEPTION_USER_CANCEL)
mail_exception_dialog ("Unable to get new mail", ex, fb);