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

Fixed wrong variable name.

This commit is contained in:
batrick
2012-03-04 10:37:37 +00:00
parent 059007601a
commit 3e73b033a2

View File

@@ -315,7 +315,7 @@ Comm = {
recv = function(self)
local status, hdr_data = self.socket:receive_buf(match.numbytes(RPCAP.Header.size), true)
if ( not(status) ) then
return status, data
return status, hdr_data
end
local header = RPCAP.Header.parse(hdr_data)