diff --git a/DearFTP/FtpServer.cs b/DearFTP/FtpServer.cs index 039da47..76f2658 100644 --- a/DearFTP/FtpServer.cs +++ b/DearFTP/FtpServer.cs @@ -40,9 +40,7 @@ namespace DearFTP Logger.Log("DearFTP started"); Logger.Log(); - int implicitFtpsPort = Configuration.Server.ImplicitFtpsPort; - - if (implicitFtpsPort != 0) + if (Configuration.Server.ImplicitFtpsPort != 0) { Task.Run(() => FtpsTcpLoop()); }