From e7f22c5aedb3a4f36b95e098b6d70e4db5e3569c Mon Sep 17 00:00:00 2001 From: david Date: Wed, 19 Jun 2013 23:53:37 +0000 Subject: [PATCH] Actually show the error message from ReceivePacket failure. --- scripts/rpc-grind.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rpc-grind.nse b/scripts/rpc-grind.nse index 2053a1f8e..d9f0a1f43 100644 --- a/scripts/rpc-grind.nse +++ b/scripts/rpc-grind.nse @@ -191,7 +191,7 @@ local rpcGrinder = function(host, port, iterator, result) status, data = rpcConn:ReceivePacket() if not status then - stdnse.print_debug("%s ReceivePacket(): %s", SCRIPT_NAME, err) + stdnse.print_debug("%s ReceivePacket(): %s", SCRIPT_NAME, data) condvar "signal"; return end