Fixed a debug message

This commit is contained in:
Diptanu Choudhury
2015-10-29 15:17:40 -07:00
parent d684b8e0e7
commit 06ac210eec

View File

@@ -189,7 +189,7 @@ func (f *NetworkFingerprint) ipAddress(intf *net.Interface) (string, error) {
}
if ipV4 == nil {
return "", fmt.Errorf("Couldn't parse IP address for interface %s with addr %s", intf.Name)
return "", fmt.Errorf("Couldn't parse IP address for interface %s", intf.Name)
}
return ipV4.String(), nil