mirror of
https://github.com/nmap/nmap.git
synced 2026-08-27 03:48:14 +00:00
Correct a dumb syntax mistake
This commit is contained in:
parent
3537306f64
commit
527c653a0b
1 changed files with 1 additions and 1 deletions
|
|
@ -563,7 +563,7 @@ void NetBlockIPv4Ranges::set_addr(const struct sockaddr_in *addr) {
|
|||
BIT_SET(this->octets[2], (ip & 0x0000FF00) >> 8);
|
||||
BIT_SET(this->octets[3], (ip & 0x000000FF));
|
||||
/* Reset counter so that set_addr can be used to reset the whole NetBlock */
|
||||
for (i = 0; i < 4; i++) {
|
||||
for (int i = 0; i < 4; i++) {
|
||||
this->counter[i] = 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue