1
0
鏡像自 https://github.com/therootcompany/sclient synced 2024-11-16 17:09:00 +00:00

chore: fix typo in --servername help

This commit is contained in:
AJ ONeal 2023-10-27 15:14:30 -06:00
父節點 b27b32700c
當前提交 8783d46849
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 65118FF2A9DB590F

查看文件

@ -50,7 +50,7 @@ func main() {
flag.Usage = usage flag.Usage = usage
insecure := flag.Bool("k", false, "alias for --insecure") insecure := flag.Bool("k", false, "alias for --insecure")
silent := flag.Bool("s", false, "alias of --silent") 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(insecure, "insecure", false, "ignore bad TLS/SSL/HTTPS certificates")
flag.BoolVar(silent, "silent", false, "less verbose output") flag.BoolVar(silent, "silent", false, "less verbose output")
flag.Parse() flag.Parse()