From 60e1884f88b804b6f594c65851d362e0c64a5f04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Sun, 5 Dec 2021 10:39:36 +0100 Subject: [PATCH] fix command-line argument names --- WebTunnel/WebTunnelSCP/src/WebTunnelSCP.cpp | 2 +- WebTunnel/WebTunnelSSH/src/WebTunnelSSH.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WebTunnel/WebTunnelSCP/src/WebTunnelSCP.cpp b/WebTunnel/WebTunnelSCP/src/WebTunnelSCP.cpp index 711efc36..2984b7bd 100644 --- a/WebTunnel/WebTunnelSCP/src/WebTunnelSCP.cpp +++ b/WebTunnel/WebTunnelSCP/src/WebTunnelSCP.cpp @@ -123,7 +123,7 @@ class WebTunnelSCP: public Poco::Util::Application .callback(OptionCallback(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) diff --git a/WebTunnel/WebTunnelSSH/src/WebTunnelSSH.cpp b/WebTunnel/WebTunnelSSH/src/WebTunnelSSH.cpp index 4e9c86b2..a64eb8f1 100644 --- a/WebTunnel/WebTunnelSSH/src/WebTunnelSSH.cpp +++ b/WebTunnel/WebTunnelSSH/src/WebTunnelSSH.cpp @@ -127,7 +127,7 @@ class WebTunnelSSH: public Poco::Util::Application .callback(OptionCallback(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)