Skip to content

Commit 6a1d46b

Browse files
committed
SYST returns 215
1 parent 5757b6b commit 6a1d46b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FubarDev.FtpServer.Commands/CommandHandlers/SystCommandHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public SystCommandHandler(IFtpConnectionAccessor connectionAccessor, IOptions<Sy
3333
/// <inheritdoc/>
3434
public override Task<FtpResponse> Process(FtpCommand command, CancellationToken cancellationToken)
3535
{
36-
return Task.FromResult(new FtpResponse(200, T("{0} Type: {1}", _operatingSystem, Connection.Data.TransferMode)));
36+
return Task.FromResult(new FtpResponse(215, T("{0} Type: {1}", _operatingSystem, Connection.Data.TransferMode)));
3737
}
3838
}
3939
}

0 commit comments

Comments
 (0)