From ee1d6e45356c8c3b4ac205aa0f5de717a32c0a01 Mon Sep 17 00:00:00 2001 From: dmiller Date: Wed, 7 Oct 2015 17:49:23 +0000 Subject: [PATCH] Fix undeclared type in Visual Studio. Fixes #220 --- nmap_dns.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmap_dns.cc b/nmap_dns.cc index 90a337ed1..5dc04007c 100644 --- a/nmap_dns.cc +++ b/nmap_dns.cc @@ -391,7 +391,7 @@ public: bool lookup(const sockaddr_storage & ip, std::string & name) { std::list::iterator hostI; - uint ip_hash = hash(ip); + u32 ip_hash = hash(ip); for( hostI = hosts_storage[ip_hash].begin(); hostI != hosts_storage[ip_hash].end(); ++hostI)