From 188209bc62bf6a3264ed7123be51a53589ee48dd Mon Sep 17 00:00:00 2001 From: patrik Date: Mon, 24 Oct 2011 16:42:02 +0000 Subject: [PATCH] o [NSE] Fixed an error in the mssql library that was causing the broadcast-ms-sql-discover script to fail when trying to update port version information. [Patrik] --- CHANGELOG | 4 ++++ nselib/mssql.lua | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 160c3eec5..92b7c5cbf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ # Nmap Changelog ($Id$); -*-text-*- +o [NSE] Fixed an error in the mssql library that was causing the + broadcast-ms-sql-discover script to fail when trying to update port version + information. [Patrik] + o [NSE] Added the missing broadcast category to the broadcast-listener script. [Jason DePriest] diff --git a/nselib/mssql.lua b/nselib/mssql.lua index ef898d5ea..48c1bff3b 100644 --- a/nselib/mssql.lua +++ b/nselib/mssql.lua @@ -2005,7 +2005,7 @@ Helper = -- Give some version info back to Nmap if ( instance.port and instance.version ) then instance.version:PopulateNmapPortVersion( instance.port ) - nmap.set_port_version( instance.host, instance.port, "hardmatched" ) + --nmap.set_port_version( instance.host, instance.port, "hardmatched" ) end end end