bincimap

Log | Files | Refs | LICENSE

commit 6724ad6d806a9e34178bcb7c601cfe901bb7c6bd
parent 7899d49a118629e88f41231c4d00bdf0c794e78e
Author: andreaha <andreaha@b31fe1f4-c0d1-0310-8000-a34f4ae90293>
Date:   Wed, 28 Jan 2004 22:48:18 +0000

- Ignore any errors in the final pendingUpdates call.


git-svn-id: file:///home/cwright/convert/bincimap/trunk@11 b31fe1f4-c0d1-0310-8000-a34f4ae90293

Diffstat:
Msrc/operator-append.cc | 7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/operator-append.cc b/src/operator-append.cc @@ -239,11 +239,8 @@ Operator::ProcessResult AppendOperator::process(Depot &depot, } if (mailbox == depot.getSelected()) { - if(!pendingUpdates(mailbox, PendingUpdates::EXISTS - | PendingUpdates::RECENT, true)) { - session.setLastError("Pending Updates failed"); - return NO; - } + pendingUpdates(mailbox, PendingUpdates::EXISTS + | PendingUpdates::RECENT, true); } return OK;