aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-11-04 06:33:23 +0800
committerDan Winship <danw@src.gnome.org>2000-11-04 06:33:23 +0800
commit065fe4ad082f63fc73a8261e798674bcb58a25ca (patch)
tree3747c240da96cadd4552395f7be1bf3fef7518be /camel
parent7c64de04114bc7973273fad39c104c2fb33c79e1 (diff)
downloadgsoc2013-evolution-065fe4ad082f63fc73a8261e798674bcb58a25ca.tar
gsoc2013-evolution-065fe4ad082f63fc73a8261e798674bcb58a25ca.tar.gz
gsoc2013-evolution-065fe4ad082f63fc73a8261e798674bcb58a25ca.tar.bz2
gsoc2013-evolution-065fe4ad082f63fc73a8261e798674bcb58a25ca.tar.lz
gsoc2013-evolution-065fe4ad082f63fc73a8261e798674bcb58a25ca.tar.xz
gsoc2013-evolution-065fe4ad082f63fc73a8261e798674bcb58a25ca.tar.zst
gsoc2013-evolution-065fe4ad082f63fc73a8261e798674bcb58a25ca.zip
Unbreak this.
* providers/pop3/camel-pop3-store.c (camel_pop3_store_expunge): Unbreak this. svn path=/trunk/; revision=6381
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/providers/pop3/camel-pop3-store.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 6c83938fe9..0aa606f314 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-03 Dan Winship <danw@helixcode.com>
+
+ * providers/pop3/camel-pop3-store.c (camel_pop3_store_expunge):
+ Unbreak this.
+
2000-11-03 Jeffrey Stedfast <fejj@helixcode.com>
* camel-url.c (camel_url_to_string): If show_pass, then base64 the
diff --git a/camel/providers/pop3/camel-pop3-store.c b/camel/providers/pop3/camel-pop3-store.c
index d572cc0a98..bdcf7996e3 100644
--- a/camel/providers/pop3/camel-pop3-store.c
+++ b/camel/providers/pop3/camel-pop3-store.c
@@ -365,8 +365,8 @@ query_auth_types_generic (CamelService *service, CamelException *ex)
void
camel_pop3_store_expunge (CamelPop3Store *store, CamelException *ex)
{
- /*camel_pop3_command (store, NULL, ex, "QUIT");*/
- /*camel_service_disconnect (CAMEL_SERVICE (store), ex);*/
+ camel_pop3_command (store, NULL, ex, "QUIT");
+ camel_service_disconnect (CAMEL_SERVICE (store), FALSE, ex);
}