mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 06:01:28 +00:00
comment out unused variable
This commit is contained in:
2
nmap.cc
2
nmap.cc
@@ -346,7 +346,7 @@ printf("%s %s ( %s )\n"
|
||||
static int ip_is_reserved(struct in_addr *ip)
|
||||
{
|
||||
char *ipc = (char *) &(ip->s_addr);
|
||||
unsigned char i1 = ipc[0], i2 = ipc[1], i3 = ipc[2], i4 = ipc[3];
|
||||
unsigned char i1 = ipc[0], i2 = ipc[1], i3 = ipc[2]; /* i4 not currently used - , i4 = ipc[3]; */
|
||||
|
||||
/* do all the /7's and /8's with a big switch statement, hopefully the
|
||||
* compiler will be able to optimize this a little better using a jump table
|
||||
|
||||
Reference in New Issue
Block a user