From 283e2c32dbeeb212826a11e25eefc95c8267cde5 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 15 Sep 2000 14:01:44 +0000 Subject: Fix the sense of the "keep on server" check so we're not doing this * mail-ops.c (do_fetch_mail): Fix the sense of the "keep on server" check so we're not doing this backwards. svn path=/trunk/; revision=5447 --- mail/ChangeLog | 5 +++++ mail/mail-ops.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 638ca685ad..edae194c17 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-09-15 Dan Winship + + * mail-ops.c (do_fetch_mail): Fix the sense of the "keep on + server" check so we're not doing this backwards. + 2000-09-15 Dan Winship This bug was so much fun to fix the first time that I decided to diff --git a/mail/mail-ops.c b/mail/mail-ops.c index ae06fe17ac..fd95cbaef9 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -168,7 +168,7 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex) uids = camel_folder_get_uids (folder); - if (!input->keep_on_server) { + if (input->keep_on_server) { /* get the mail source's uid cache file */ url = camel_url_to_string (CAMEL_SERVICE (folder->parent_store)->url, FALSE); for (p = url; *p; p++) { -- cgit v1.2.3