diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-02-23 17:36:14 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-02-23 18:44:42 +0100 |
commit | abf44a9ddd084952bde4609e3f6d386f7916b68a (patch) | |
tree | 11ea1c2396b8451cd69d3509f9a02b816eed0924 /connectivity | |
parent | be81807aa201887935a19006c77005747f53bdb1 (diff) |
Postgresql native, fix readLogLevelFromConfiguration
With:
osl_getModuleURLFromFunctionAddress(
reinterpret_cast<oslGenericFunction>(readLogLevelFromConfiguration), &fileName.pData );
The method retrieves the path to libpostgresql-sdbc-impllo.so, eg:
file:///home/julien/lo/libreoffice/instdir/program/libpostgresql-sdbc-impllo.so
but then instead of retrieving path + "postgresql-sdbc.ini"
we obtained ".so" filename + "postgresql-sdbc.ini"=>
libpostgresql-sdbc-impllo.sopostgresql-sdbc.ini
Regression from 1bdb2b6f06c556b9af91dba4f29f3ac73190b09e
author Noel Grandin <noel@peralex.com> 2013-11-04 13:51:21 +0200
committer Noel Grandin <noel@peralex.com> 2013-11-11 11:21:25 +0200
commit 1bdb2b6f06c556b9af91dba4f29f3ac73190b09e (patch)
tree 1d941e17952cd891f5309fd862215dd09a84b001
parent 2f2416ff060c780ad87b4d3979112f52da2ae902 (diff)
remove unnecessary use of OUString constructor in CONNECTIVITY module
Change-Id: Ie7be4b1078760f94d34dd1f6cb9932bd7fa70962
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89303
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_connection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_connection.cxx b/connectivity/source/drivers/postgresql/pq_connection.cxx index 81a34f2bee9a..fda7841a9e7c 100644 --- a/connectivity/source/drivers/postgresql/pq_connection.cxx +++ b/connectivity/source/drivers/postgresql/pq_connection.cxx @@ -131,7 +131,7 @@ static LogLevel readLogLevelFromConfiguration() OUString fileName; osl_getModuleURLFromFunctionAddress( reinterpret_cast<oslGenericFunction>(readLogLevelFromConfiguration), &fileName.pData ); - fileName = fileName.copy( fileName.lastIndexOf( '/' )+1 ) + + fileName = fileName.copy( 0, fileName.lastIndexOf( '/' )+1 ) + #ifdef MACOSX "../Resources/" #endif |