From d39740a09abd7dc8a7ba092d946cfcebcb7e0c9f Mon Sep 17 00:00:00 2001 From: lash Date: Mon, 6 Jan 2025 07:41:24 +0000 Subject: [PATCH] Edit ssh cli help text --- cmd/ssh/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/ssh/main.go b/cmd/ssh/main.go index 0227616..0b22216 100644 --- a/cmd/ssh/main.go +++ b/cmd/ssh/main.go @@ -37,8 +37,8 @@ func main() { flag.BoolVar(&engineDebug, "engine-debug", false, "use engine debug output") flag.BoolVar(&stateDebug, "state-debug", false, "use engine debug output") flag.UintVar(&size, "s", 160, "max size of output") - flag.StringVar(&host, "h", "127.0.0.1", "http host") - flag.UintVar(&port, "p", 7122, "http port") + flag.StringVar(&host, "h", "127.0.0.1", "socket host") + flag.UintVar(&port, "p", 7122, "socket port") flag.Parse() sshKeyFile := flag.Arg(0)