diff options
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/pop3/camel-pop3-store.c | 4 |
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); } |