From a9bbb27a54a0dc971168ba70241b862371ec0a38 Mon Sep 17 00:00:00 2001 From: djalal Date: Sat, 30 Jul 2011 12:02:24 +0000 Subject: [PATCH] o [NSE] Added a missing function parameter for registry_add_table(). --- nselib/stdnse.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nselib/stdnse.lua b/nselib/stdnse.lua index 264600da3..ae27aa493 100644 --- a/nselib/stdnse.lua +++ b/nselib/stdnse.lua @@ -752,7 +752,7 @@ end ---Similar to registry_add_array, except instead of adding a value to the -- end of an array, it adds a key:value pair to the table. -function registry_add_table(subkeys, key, value) +function registry_add_table(subkeys, key, value, allow_duplicates) local registry = nmap.registry local i = 1