diff --git a/nselib/lpeg/utility.lua b/nselib/lpeg-utility.lua similarity index 99% rename from nselib/lpeg/utility.lua rename to nselib/lpeg-utility.lua index 9b7843b05..6c9ea156c 100644 --- a/nselib/lpeg/utility.lua +++ b/nselib/lpeg-utility.lua @@ -3,7 +3,7 @@ -- -- @copyright Same as Nmap--See http://nmap.org/book/man-legal.html -- @class module --- @name lpeg.utility +-- @name lpeg-utility local assert = assert diff --git a/scripts/ntp-info.nse b/scripts/ntp-info.nse index 6f32142a6..f7d620261 100644 --- a/scripts/ntp-info.nse +++ b/scripts/ntp-info.nse @@ -6,7 +6,7 @@ local stdnse = require "stdnse" local string = require "string" local table = require "table" local lpeg = require "lpeg" -local U = require "lpeg.utility" +local U = require "lpeg-utility" description = [[ Gets the time and configuration variables from an NTP server. We send two diff --git a/scripts/telnet-brute.nse b/scripts/telnet-brute.nse index 6d9c4ea3e..b2832ced0 100644 --- a/scripts/telnet-brute.nse +++ b/scripts/telnet-brute.nse @@ -2,7 +2,7 @@ local comm = require "comm" local coroutine = require "coroutine" local nmap = require "nmap" local re = require "re" -local U = require "lpeg.utility" +local U = require "lpeg-utility" local shortport = require "shortport" local stdnse = require "stdnse" local strbuf = require "strbuf"