From f2ed53ebfc327fd7a2b323b3e098b83a5a8aad62 Mon Sep 17 00:00:00 2001 From: ron Date: Tue, 18 Aug 2009 02:20:33 +0000 Subject: [PATCH] Removed an undeclared variable in http.lua. --- nselib/http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nselib/http.lua b/nselib/http.lua index db4e9a661..a71bc5b6a 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -841,7 +841,7 @@ function parseResult( response ) if type( result.status ) ~= "number" and type( body ) == "string" then local code, remainder = body:match( "HTTP/%d\.%d (%d+)(.*)") -- The Reason-Phrase will be prepended to the body :( if code then - stdnse.print_debug( "Interesting variation on the HTTP standard. Please submit a --script-trace output for this host (%s) to nmap-dev[at]insecure.org.", host ) + stdnse.print_debug( "Interesting variation on the HTTP standard. Please submit a --script-trace output for this host to nmap-dev[at]insecure.org.") result.status = tonumber(code) body = remainder or body end