From 59b7ac706a83d6d1213ef4791087645f7193d377 Mon Sep 17 00:00:00 2001 From: gorjan Date: Mon, 11 Jul 2011 22:16:05 +0000 Subject: [PATCH] Removed unnecesary variable from l_list_interfaces() in nse_nmaplib.cc --- nse_nmaplib.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nse_nmaplib.cc b/nse_nmaplib.cc index 31e90434e..666d75607 100644 --- a/nse_nmaplib.cc +++ b/nse_nmaplib.cc @@ -771,7 +771,7 @@ static int l_get_interface (lua_State *L) */ static int l_list_interfaces (lua_State *L) { - int numifs = 0, numroutes = 0; + int numifs = 0; struct interface_info *iflist; char errstr[256]; errstr[0]='\0';