1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 13:11:28 +00:00

Fixed a compiler error I introduced in 15357.

This commit is contained in:
batrick
2009-08-29 06:03:04 +00:00
parent d788c5e3be
commit 325a5231a5

View File

@@ -558,7 +558,7 @@ void nse_selectedbyname (lua_State *L)
if (lua_isnil(L, -1)) {
lua_pushboolean(L, 0);
lua_replace(L, -2);
} else
} else {
lua_call(L, 0, 1);
}
}