1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +00:00

o The NSE nmap.registry.args table is now available, albeit empty, when

--script-args isn't used.  Now scripts don't need to check if it's nil
  before attempting to index it. [Kris]
This commit is contained in:
kris
2008-06-01 06:31:50 +00:00
parent fda3297aaa
commit a5bf21e5db
3 changed files with 9 additions and 5 deletions

View File

@@ -285,7 +285,7 @@ int init_lua (lua_State *L)
/* int init_parseargs (lua_State *L)
*
* Arguments
* args Arguments passed through --script-args
* args Arguments passed through --script-args, or "" if it wasn't used
* Returns
* function Function that returns a table with the arguments, or an error
* message describing why the arguments could not be parsed.
@@ -320,9 +320,6 @@ int init_parseargs (lua_State *L)
*/
int init_setargs (lua_State *L)
{
if (o.scriptargs == NULL)
return 0;
lua_getglobal(L, "nmap");
lua_getfield(L, -1, "registry");