From be268bed3d893ef053ff35a4900cc1c125bb5769 Mon Sep 17 00:00:00 2001 From: Olivier Bertrand Date: Thu, 9 May 2013 16:16:45 +0200 Subject: [PATCH] - Fix inverted test on am in MYSQLDEF::DefineAM modified: storage/connect/tabmysql.cpp --- storage/connect/tabmysql.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/connect/tabmysql.cpp b/storage/connect/tabmysql.cpp index b3401530c1b..3ecfd6aa6c1 100644 --- a/storage/connect/tabmysql.cpp +++ b/storage/connect/tabmysql.cpp @@ -283,7 +283,7 @@ bool MYSQLDEF::DefineAM(PGLOBAL g, LPCSTR am, int poff) Desc = "MySQL Table"; - if (!stricmp(am, "MYPRX")) { + if (stricmp(am, "MYPRX")) { // Normal case of specific MYSQL table if (!url || !*url) { // Not using the connection URL