From 8783d468499dc6862779aaf204921772304b29e6 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 27 Oct 2023 15:14:30 -0600 Subject: [PATCH] chore: fix typo in --servername help --- cmd/sclient/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sclient/main.go b/cmd/sclient/main.go index f13678a..bd9bbed 100644 --- a/cmd/sclient/main.go +++ b/cmd/sclient/main.go @@ -50,7 +50,7 @@ func main() { flag.Usage = usage insecure := flag.Bool("k", false, "alias for --insecure") silent := flag.Bool("s", false, "alias of --silent") - servername := flag.String("servername", "", "specify a servername different from (to disable SNI use an IP as and do use this option)") + servername := flag.String("servername", "", "specify a servername different from (to disable SNI use an IP as and do not use this option)") flag.BoolVar(insecure, "insecure", false, "ignore bad TLS/SSL/HTTPS certificates") flag.BoolVar(silent, "silent", false, "less verbose output") flag.Parse()