diff options
Diffstat (limited to 'src/imapserver.cc')
-rw-r--r-- | src/imapserver.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/imapserver.cc b/src/imapserver.cc index b19bc90..4003b93 100644 --- a/src/imapserver.cc +++ b/src/imapserver.cc @@ -154,7 +154,8 @@ int IMAPServer::run(void) } else if (serverStatus == OK && session.getState() != Session::LOGOUT) { bincClient << clientRequest.getTag() << " OK"; if (clientRequest.getUidMode()) bincClient << " UID"; - bincClient << " " << session.getResponseCode() << clientRequest.getName() << " completed"; + bincClient << " " << session.getResponseCode() << clientRequest.getName() + << " completed"; if (clientRequest.getContextInfo() != "") bincClient << " (" << clientRequest.getContextInfo() << ")"; @@ -192,8 +193,8 @@ int IMAPServer::run(void) if (serverStatus == Timeout) { bincClient << "* BYE Timeout after " << session.timeout() << " seconds of inactivity\n"; bincClient.flush(); - bincLog << "bincimapd: pid " << pid << " Timed out: <" << userID << "> after " << IDLE_TIMEOUT - << "s"; + bincLog << "bincimapd: pid " << pid << " Timed out: <" << userID << "> after " + << IDLE_TIMEOUT << "s"; } else if (serverStatus == ClientDisconnected) { bincLog << "bincimapd: pid " << pid << "Disconnected: <" << userID << ">\n"; } else { |