Update dns_spoof.go

This commit is contained in:
buffermet 2020-03-05 08:35:42 +10:00 committed by GitHub
commit 03951d9d01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,7 +144,7 @@ func (mod *DNSSpoofer) Configure() error {
ttl_, err := strconv.ParseUint(ttl, 10, 32)
if err != nil {
return fmt.Errorf("dns.spoof.ttl value must be an integer")
return fmt.Errorf("dns.spoof.ttl value must be an integer")
}
mod.TTL = uint32(ttl_)