Fixed typo in flags.go

ssl-passthrough-proxy-port
This commit is contained in:
Han Sol Park 2018-08-13 18:14:33 +09:00 committed by GitHub
parent e7b8c2e07c
commit 63aef5d652
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -206,7 +206,7 @@ Feature backed by OpenResty Lua libraries.`)
}
if *enableSSLPassthrough && !ing_net.IsPortAvailable(*sslProxyPort) {
return false, nil, fmt.Errorf("Port %v is already in use. Please check the flag --ssl-passtrough-proxy-port", *sslProxyPort)
return false, nil, fmt.Errorf("Port %v is already in use. Please check the flag --ssl-passthrough-proxy-port", *sslProxyPort)
}
if !*enableSSLChainCompletion {