diff --git a/CHANGELOG b/CHANGELOG index d67af3687..ec16aed6f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ # Nmap Changelog ($Id$); -*-text-*- +o [NSE] Correct misspelled "Capabilities.IgnoreSpaceBeforeParanthesis" + name in the MySQL library. [Kris] + o [Ncat] Fixed the --crlf option not to insert an extra \r byte in the case that one system read ends with \r and the next begins with \n (should be rare). [David] diff --git a/nselib/mysql.lua b/nselib/mysql.lua index 42008bb42..f554c8202 100644 --- a/nselib/mysql.lua +++ b/nselib/mysql.lua @@ -29,7 +29,7 @@ Capabilities = SupportsCompression = 0x20, ODBCClient = 0x40, SupportsLoadDataLocal = 0x80, - IgnoreSpaceBeforeParanthesis = 0x100, + IgnoreSpaceBeforeParenthesis = 0x100, Speaks41ProtocolNew = 0x200, InteractiveClient = 0x400, SwitchToSSLAfterHandshake = 0x800,