Skip to content

Commit

Permalink
Fixes FubarDevelopment/FtpServer/FubarDevelopment#122
Browse files Browse the repository at this point in the history
  • Loading branch information
ErdoganKurtur committed Jan 12, 2022
1 parent 7c25853 commit 44f10c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/TestFtpServer/OptionsConfigSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public IConfigurationProvider Build(IConfigurationBuilder builder)
{ "c|certificate=", "Set the SSL certificate", v => values["ftps:certificate"] = v },
{ "k|private-key=", "Set the private key file for the SSL certificate", v => values["ftps:privateKey"] = v },
{ "P|password=", "Password for the SSL certificate", v => values["ftps:password"] = v },
{ "i|implicit", "Use implicit FTPS", v => values["ftps:implicit"] = XmlConvert.ToBoolean(v.ToLowerInvariant()) ? "true" : "false" },
{ "i|implicit", "Use implicit FTPS", v => values["ftps:implicit"] = "true" },
"Backends",
new Command("system-io", "Use the System.IO file system access")
{
Expand Down

0 comments on commit 44f10c7

Please sign in to comment.