diff options
Diffstat (limited to 'src/maildir-select.cc')
-rw-r--r-- | src/maildir-select.cc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/maildir-select.cc b/src/maildir-select.cc index 78daf9d..a779a4a 100644 --- a/src/maildir-select.cc +++ b/src/maildir-select.cc @@ -13,8 +13,7 @@ using namespace ::std; using namespace Binc; //------------------------------------------------------------------------ -bool Binc::Maildir::selectMailbox(const std::string &name, - const std::string &s_in) +bool Binc::Maildir::selectMailbox(const std::string &name, const std::string &s_in) { setName(name); @@ -31,11 +30,10 @@ bool Binc::Maildir::selectMailbox(const std::string &name, setPath(s_in); switch (scan()) { - case Success: + case Success: break; case TemporaryError: - if (scan() == Success) - break; + if (scan() == Success) break; case PermanentError: return false; } |