diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -320,7 +320,7 @@ func Resolver(input chan interface{}) (chan interface{}, error) { resp := val.(ICMPResponse) names, err := net.LookupAddr(resp.fromAddr.String()) if err != nil { - resp.fromName = "?" + resp.fromName = resp.fromAddr.String() } else { resp.fromName = names[0] } |