diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-07 22:33:50 +0200 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-08 11:35:51 +0200 |
commit | 1978c49bea5b439d993067c055cec47e70db8fd6 (patch) | |
tree | 255caea96a13f95564e6b631be9a4ac55ce33cd9 /src/bincimap-up.cc | |
parent | 3b1278f5459514a6d6364f068ff97b8a0432057b (diff) |
minor refactoring
Diffstat (limited to 'src/bincimap-up.cc')
-rw-r--r-- | src/bincimap-up.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bincimap-up.cc b/src/bincimap-up.cc index c74b98f..48615ad 100644 --- a/src/bincimap-up.cc +++ b/src/bincimap-up.cc @@ -1,15 +1,15 @@ -/** -------------------------------------------------------------------- +/** * @file bincimap-up.cc * @brief Implementation of the preauthenticated bincimap stub * @author Andreas Aardal Hanssen * @date 2002-2005 - * ------------------------------------------------------------------ **/ + */ + #include "imapserver.h" -//------------------------------------------------------------------------ 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.runStub(); |