1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 09:59:04 +00:00

Fixes bug in debug statement in msrpc.lua

This commit is contained in:
rewanth
2017-08-25 05:32:29 +00:00
parent 0b1d7652b8
commit 0a33672e18

View File

@@ -402,7 +402,7 @@ function call_function(smbstate, opnum, arguments)
arguments
)
stdnse.debug3("MSRPC: Calling function 0x%02x with %d bytes of arguments", #arguments, opnum)
stdnse.debug3("MSRPC: Calling function 0x%02x with %d bytes of arguments", opnum, #arguments)
-- Pass the information up to the smb layer
status, result = smb.write_file(smbstate, data, 0)