Skip to content

Commit

Permalink
SYST returns 215
Browse files Browse the repository at this point in the history
  • Loading branch information
fubar-coder committed Jan 27, 2019
1 parent 5757b6b commit 6a1d46b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public SystCommandHandler(IFtpConnectionAccessor connectionAccessor, IOptions<Sy
/// <inheritdoc/>
public override Task<FtpResponse> 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)));
}
}
}

0 comments on commit 6a1d46b

Please sign in to comment.