From 263e62a3d43b5f03e045148b4d163cfd95625eb6 Mon Sep 17 00:00:00 2001 From: fyodor Date: Mon, 1 Dec 2008 21:38:18 +0000 Subject: [PATCH] comment out unused variable --- nmap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmap.cc b/nmap.cc index 323ed578a..29b6a5d7d 100644 --- a/nmap.cc +++ b/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