Corrects typos and useless usage output

modules
Jean-Louis Huynen 2019-02-26 09:09:21 +01:00
parent e2c5eba8a2
commit c9bd1bb37b
No known key found for this signature in database
GPG Key ID: 4CDEBABACE9A5DC9
1 changed files with 1 additions and 7 deletions

View File

@ -97,7 +97,7 @@ var (
ct = flag.Duration("ct", tmpct, "Set timeout in human format")
cka = flag.Duration("cka", tmpcka, "Keep Alive time human format, 0 to disable")
retry = flag.Duration("rt", tmpretry, "Time in human format before retry after connection failure, set to 0 to exit on failure")
cc = flag.Bool("cc", false, "Check TLS certificate againt rootCA.crt")
cc = flag.Bool("cc", false, "Check TLS certificate against rootCA.crt")
)
func main() {
@ -125,12 +125,6 @@ func main() {
fmt.Printf("source - the source where the data is read from\n")
fmt.Printf("destination - the destination where the data is written to\n")
fmt.Printf("\n")
fmt.Printf("-v [TRUE] for verbose output on stdout")
fmt.Printf("-ce [TRUE] if destination is set to ip:port, use of tls")
fmt.Printf("-cc [FALSE] if destination is set to ip:port, verification of server's tls certificate againt rootCA.crt")
fmt.Printf("-ct [300] if destination is set to ip:port, timeout")
fmt.Printf("-cka [3600] if destination is set to ip:port, keepalive")
fmt.Printf("-retry [5] if destination is set to ip:port, retry period ")
flag.PrintDefaults()
}