diff options
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(); |