From 6a1d46b09e4573325c69d167c180d2c66ab95f59 Mon Sep 17 00:00:00 2001 From: Mark Junker Date: Sun, 27 Jan 2019 21:39:22 +0100 Subject: [PATCH] SYST returns 215 --- .../CommandHandlers/SystCommandHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FubarDev.FtpServer.Commands/CommandHandlers/SystCommandHandler.cs b/src/FubarDev.FtpServer.Commands/CommandHandlers/SystCommandHandler.cs index 52f5cfe2..68d65f6b 100644 --- a/src/FubarDev.FtpServer.Commands/CommandHandlers/SystCommandHandler.cs +++ b/src/FubarDev.FtpServer.Commands/CommandHandlers/SystCommandHandler.cs @@ -33,7 +33,7 @@ public SystCommandHandler(IFtpConnectionAccessor connectionAccessor, IOptions public override Task Process(FtpCommand command, CancellationToken cancellationToken) { - return Task.FromResult(new FtpResponse(200, T("{0} Type: {1}", _operatingSystem, Connection.Data.TransferMode))); + return Task.FromResult(new FtpResponse(215, T("{0} Type: {1}", _operatingSystem, Connection.Data.TransferMode))); } } }