summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-11 17:16:34 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-11 17:16:34 +0100
commit224fbad7ab4cbedec53910f05e2b4a71771cfec5 (patch)
tree7c68a79b8939cbab73f242e717b879f2324c65a3 /connectivity
parent7050fc44a7a02efdec005337ee9d286d27964e47 (diff)
fix my previous commit (compareToAscii)
Change-Id: I06885691c1fb3cfa0824f2ac1307ae4d9f3c9d40
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/hsqldb/HDriver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/hsqldb/HDriver.cxx b/connectivity/source/drivers/hsqldb/HDriver.cxx
index d58c8f56d941..695c59375b74 100644
--- a/connectivity/source/drivers/hsqldb/HDriver.cxx
+++ b/connectivity/source/drivers/hsqldb/HDriver.cxx
@@ -399,7 +399,7 @@ namespace connectivity
{
sal_Bool bEnabled = sal_False;
OSL_VERIFY_EQUALS( jfw_getEnabled( &bEnabled ), JFW_E_NONE, "error in jfw_getEnabled" );
- return bEnabled && url.startsWith("sdbc:embedded:hsqldb");
+ return bEnabled && url.equals("sdbc:embedded:hsqldb");
}
//--------------------------------------------------------------------