Skip to content

Commit

Permalink
fix command-line argument names
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Dec 5, 2021
1 parent 3dcdb5b commit 60e1884
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WebTunnel/WebTunnelSCP/src/WebTunnelSCP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class WebTunnelSCP: public Poco::Util::Application
.callback(OptionCallback<WebTunnelSCP>(this, &WebTunnelSCP::handleConfig)));

options.addOption(
Option("SCP-client", "C"s, "Specify the name of the SCP client executable (default: scp)."s)
Option("scp-client", "C"s, "Specify the name of the SCP client executable (default: scp)."s)
.required(false)
.repeatable(false)
.argument("program"s)
Expand Down
2 changes: 1 addition & 1 deletion WebTunnel/WebTunnelSSH/src/WebTunnelSSH.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class WebTunnelSSH: public Poco::Util::Application
.callback(OptionCallback<WebTunnelSSH>(this, &WebTunnelSSH::handleConfig)));

options.addOption(
Option("ssh-clients", "C"s, "Specify the name of the SSH client executable (default: ssh or putty.exe)."s)
Option("ssh-client", "C"s, "Specify the name of the SSH client executable (default: ssh or putty.exe)."s)
.required(false)
.repeatable(false)
.argument("program"s)
Expand Down

0 comments on commit 60e1884

Please sign in to comment.