Browse Source

chore: fix typo in --servername help

main
AJ ONeal 6 months ago
parent
commit
8783d46849
Signed by: coolaj86 GPG Key ID: 65118FF2A9DB590F
  1. 2
      cmd/sclient/main.go

2
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 <remote> (to disable SNI use an IP as <remote> and do use this option)")
servername := flag.String("servername", "", "specify a servername different from <remote> (to disable SNI use an IP as <remote> 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()

Loading…
Cancel
Save