1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-10 07:51:32 +00:00

Corrected a numeric type related to version detection against MS SQL 2008 R2 RTM. Added detection version number for MS SQL 2008 R2 SP1

This commit is contained in:
tomsellers
2012-02-08 02:41:53 +00:00
parent da56d9c62f
commit 4cb024c21d

View File

@@ -347,7 +347,7 @@ SqlServerVersionInfo =
local SP_LOOKUP_TABLE_2008 = { {1600, "RTM"}, {2531, "SP1"}, {4000, "SP2"}, } local SP_LOOKUP_TABLE_2008 = { {1600, "RTM"}, {2531, "SP1"}, {4000, "SP2"}, }
local SP_LOOKUP_TABLE_2008R2 = { {1660, "RTM"}, } local SP_LOOKUP_TABLE_2008R2 = { {1600, "RTM"}, {2500, "SP1"}, }
if ( not self.brandedVersion ) then if ( not self.brandedVersion ) then