summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwin Hoffmann <feh@fehcom.de>2023-10-05 21:53:06 +0200
committerErwin Hoffmann <feh@fehcom.de>2023-10-05 21:53:06 +0200
commit73052716e187296a969dfb14837a8380e4593345 (patch)
tree45fa20e38425de3671f5b92c03c8de78336cb913
parentec566f2903ddb204aef6172ed800c7654e8b91c5 (diff)
wrong parenthesis setting in pending-updated.cc
-rw-r--r--src/pendingupdates.cc2
1 files changed, 1 insertions, 1 deletions
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) {