Missing dot between service and protocol.

This commit is contained in:
Pauline Middelink 2016-02-27 00:55:17 +01:00
parent 905106d0e8
commit 77b60828ed
1 changed files with 1 additions and 1 deletions

View File

@ -82,5 +82,5 @@ func TLSAName(name, service, network string) (string, error) {
if e != nil {
return "", e
}
return "_" + strconv.Itoa(p) + "_" + network + "." + name, nil
return "_" + strconv.Itoa(p) + "._" + network + "." + name, nil
}