1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-21 15:09:02 +00:00

fixed overflow that made /1 netmask not work

This commit is contained in:
fyodor
2005-04-23 04:47:23 +00:00
parent 8582898f48
commit 5cf6c14628
3 changed files with 26 additions and 15 deletions

View File

@@ -156,8 +156,10 @@ class TargetGroup {
unsigned int current[4];
u8 last[4];
int ipsleft; /* Number of IPs left in this structure -- set to 0 if
/* Number of IPs left in this structure -- set to 0 if
the fields are not valid */
unsigned long ipsleft;
};
class HostGroupState {