mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Fix undeclared type in Visual Studio. Fixes #220
This commit is contained in:
parent
821d3ef2dd
commit
ee1d6e4535
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ public:
|
|||
bool lookup(const sockaddr_storage & ip, std::string & name)
|
||||
{
|
||||
std::list<HostElem>::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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue