1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 06:01:28 +00:00

Fixed bad global access.

This commit is contained in:
batrick
2010-11-02 23:35:02 +00:00
parent 06a42da3ec
commit 93528b984c

View File

@@ -195,7 +195,7 @@ BufferedReader = {
--@return bytevalue
peekByte = function(self)
if self:canRead(1) then
return true, peekUnpack('C')
return true, self:peekUnpack('C')
end
return false
end,