From 0e579c71a47ec07252bc9af91220ff344331aa6f Mon Sep 17 00:00:00 2001 From: kris Date: Tue, 6 Apr 2010 02:05:07 +0000 Subject: [PATCH] o [NSE] Correct misspelled "Capabilities.IgnoreSpaceBeforeParanthesis" name in the MySQL library. [Kris] The second "a" in "paranthesis" should be in "e". No current scripts use this name (yet). --- CHANGELOG | 3 +++ nselib/mysql.lua | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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,