From 1978c49bea5b439d993067c055cec47e70db8fd6 Mon Sep 17 00:00:00 2001 From: "Jannis M. Hoffmann" Date: Sat, 7 Oct 2023 22:33:50 +0200 Subject: minor refactoring --- src/bincimapd.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/bincimapd.cc') 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(); -- cgit v1.2.3