From 917b2b0d6b79b7c0455a40f11bcf8379caec7888 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 9 Feb 2011 17:07:02 +0000 Subject: [PATCH] one more commit related to the previous one --- lib/techniques/brute/use.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/techniques/brute/use.py b/lib/techniques/brute/use.py index 5f58ce6bc..e64fc86ed 100644 --- a/lib/techniques/brute/use.py +++ b/lib/techniques/brute/use.py @@ -65,7 +65,7 @@ def tableExists(tableFile, regex=None): tbllock.release() if conf.db and not conf.db.endswith(METADB_SUFFIX): - fullTableName = "%s.%s" % (conf.db, table) + fullTableName = "%s%s%s" % (conf.db, '..' if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) else '.', table) else: fullTableName = table