From 73052716e187296a969dfb14837a8380e4593345 Mon Sep 17 00:00:00 2001 From: Erwin Hoffmann Date: Thu, 5 Oct 2023 21:53:06 +0200 Subject: wrong parenthesis setting in pending-updated.cc --- src/pendingupdates.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pendingupdates.cc b/src/pendingupdates.cc index 337c21a..0f76526 100644 --- a/src/pendingupdates.cc +++ b/src/pendingupdates.cc @@ -222,7 +222,7 @@ bool Binc::pendingUpdates(Mailbox *mailbox, int type, bool rescan, bool showAll, if (((type & PendingUpdates::EXISTS) && p.newExists()) || showAll) bincClient << "* " << p.getExists() << " EXISTS" << endl; - if (((type & PendingUpdates::RECENT) && p.newRecent() || showAll)) + if (((type & PendingUpdates::RECENT) && p.newRecent()) || showAll) bincClient << "* " << p.getRecent() << " RECENT" << endl; if (type & PendingUpdates::FLAGS) { -- cgit v1.2.3