Fix identifier concatenation to provide string.
This commit is contained in:
parent
f9d35282ce
commit
57f72e6671
|
|
@ -91,7 +91,7 @@ func (va ValidationAuthorityImpl) validateDvsni(identifier core.AcmeIdentifier,
|
||||||
zName := hex.EncodeToString(z)
|
zName := hex.EncodeToString(z)
|
||||||
|
|
||||||
// Make a connection with SNI = nonceName
|
// Make a connection with SNI = nonceName
|
||||||
hostPort := identifier + ":443"
|
hostPort := identifier.Value + ":443"
|
||||||
conn, err := tls.Dial("tcp", hostPort, &tls.Config{
|
conn, err := tls.Dial("tcp", hostPort, &tls.Config{
|
||||||
ServerName: nonceName,
|
ServerName: nonceName,
|
||||||
InsecureSkipVerify: true,
|
InsecureSkipVerify: true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue