1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-10 09:49:05 +00:00

stdnse.print_debug -> stdnse.debug1

$ sed -i 's/stdnse.print_debug("%s \([^"]*\)", SCRIPT_NAME/stdnse.debug1("\1"/' *.nse
This commit is contained in:
batrick
2014-08-01 21:35:56 +00:00
parent c94d5970ff
commit 2a8c81c4f6
19 changed files with 69 additions and 69 deletions

View File

@@ -87,7 +87,7 @@ local isRPC = function(host, port)
data = rpcConn:EncodePacket(xid)
status, err = rpcConn:SendPacket(data)
if not status then
stdnse.print_debug("%s SendPacket(): %s", SCRIPT_NAME, err)
stdnse.debug1("SendPacket(): %s", err)
return
end
@@ -168,7 +168,7 @@ local rpcGrinder = function(host, port, iterator, result)
status, err = rpcConn:Connect(host, port)
if not status then
stdnse.print_debug("%s Connect(): %s", SCRIPT_NAME, err)
stdnse.debug1("Connect(): %s", err)
condvar "signal";
return
end
@@ -183,14 +183,14 @@ local rpcGrinder = function(host, port, iterator, result)
packet = rpcConn:EncodePacket(xid)
status, err = rpcConn:SendPacket(packet)
if not status then
stdnse.print_debug("%s SendPacket(): %s", SCRIPT_NAME, err)
stdnse.debug1("SendPacket(): %s", err)
condvar "signal";
return
end
status, data = rpcConn:ReceivePacket()
if not status then
stdnse.print_debug("%s ReceivePacket(): %s", SCRIPT_NAME, data)
stdnse.debug1("ReceivePacket(): %s", data)
condvar "signal";
return
end