From 66c9885b96055efa01a4368b0a992ed956d3bc38 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Fri, 26 Feb 2010 11:34:48 +0000 Subject: [PATCH] Minor path fix --- plugins/dbms/mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dbms/mysql.py b/plugins/dbms/mysql.py index 7573ade33..8f05404c6 100644 --- a/plugins/dbms/mysql.py +++ b/plugins/dbms/mysql.py @@ -519,7 +519,7 @@ class MySQLMap(Fingerprint, Enumeration, Filesystem, Miscellaneous, Takeover): # NOTE: specifying the relative path as './udf.dll' # saves in @@datadir on both MySQL 4.1 and MySQL 5.0 self.__datadir = "." - self.__datadir = normalizePath(ntToPosixSlashes(self.__datadir)) + self.__datadir = ntToPosixSlashes(normalizePath(self.__datadir)) if re.search("[\w]\:\/", self.__datadir, re.I): kb.os = "Windows"