Merge pull request #30 from azlyth/master
Fix double period at end of formatted hostname
This commit is contained in:
commit
e23dbc9d18
2
zone.go
2
zone.go
@ -99,7 +99,7 @@ func NewMDNSService(instance, service, domain, hostName string, port int, ips []
|
||||
if err != nil {
|
||||
// Try appending the host domain suffix and lookup again
|
||||
// (required for Linux-based hosts)
|
||||
tmpHostName := fmt.Sprintf("%s%s.", hostName, domain)
|
||||
tmpHostName := fmt.Sprintf("%s%s", hostName, domain)
|
||||
|
||||
ips, err = net.LookupIP(tmpHostName)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user