summaryrefslogtreecommitdiff
path: root/src/bincimapd.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/bincimapd.cc')
-rw-r--r--src/bincimapd.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bincimapd.cc b/src/bincimapd.cc
index b8ba1cb..1ec89df 100644
--- a/src/bincimapd.cc
+++ b/src/bincimapd.cc
@@ -1,9 +1,10 @@
-/** --------------------------------------------------------------------
+/**
* @file bincimapd.cc
* @brief Implementation of the main bincimapd service
* @author Andreas Aardal Hanssen
* @date 2002-2005
- * ----------------------------------------------------------------- **/
+ */
+
#include "imapserver.h"
namespace Binc {
@@ -12,7 +13,7 @@ namespace Binc {
int main(int argc, char *argv[])
{
- Binc::IMAPServer imapServer(argc, argv);
+ auto imapServer = Binc::IMAPServer(argc, argv);
int initResult = imapServer.initialize();
if (initResult != 0) return initResult;
return imapServer.run();