summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-05-13 14:33:47 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-05-13 14:34:29 +0200
commit2c46fa1299bc00bff5528895bcdffdf0e681572d (patch)
treeed2342446ef7a538ee6831cd995e23f2f1fec35f /connectivity
parentddb579666ce8b508ebb37f74f2d5d365047026f5 (diff)
fdo#64528 macab URL is sdbc:address:macab, not sdbc:address:macab:*
Change-Id: I1e5721815c961e14484f78f449910908ed48aeb1
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/macab/MacabDriver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/macab/MacabDriver.cxx b/connectivity/source/drivers/macab/MacabDriver.cxx
index a8d736eb8374..7b0ab7cace9c 100644
--- a/connectivity/source/drivers/macab/MacabDriver.cxx
+++ b/connectivity/source/drivers/macab/MacabDriver.cxx
@@ -276,7 +276,7 @@ sal_Bool SAL_CALL MacabDriver::acceptsURL( const OUString& url )
return sal_False;
// here we have to look whether we support this URL format
- return url.startsWith("sdbc:address:macab:");
+ return url.equals("sdbc:address:macab");
}
// --------------------------------------------------------------------------------
Sequence< DriverPropertyInfo > SAL_CALL MacabDriver::getPropertyInfo( const OUString&, const Sequence< PropertyValue >& ) throw(SQLException, RuntimeException)