Removed unnecesary variable from l_list_interfaces() in nse_nmaplib.cc

This commit is contained in:
gorjan 2011-07-11 22:16:05 +00:00
parent dbe7a27698
commit 59b7ac706a

View file

@ -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';