summaryrefslogtreecommitdiff
path: root/extensions/source/config
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-12-10 22:14:57 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-12-10 22:16:07 +0900
commit93a9f170be76965ec004b200ac939e55e8382ca0 (patch)
tree2631f1e25117ae2bef93935fb3dab41d13c728db /extensions/source/config
parent1688a9d9235dd2ee4f3b9497308efd41f7a3fb6f (diff)
catch exception by constant reference
Diffstat (limited to 'extensions/source/config')
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/config/ldap/ldapuserprofilebe.cxx b/extensions/source/config/ldap/ldapuserprofilebe.cxx
index 981e7e2b338d..3f59431ab224 100644
--- a/extensions/source/config/ldap/ldapuserprofilebe.cxx
+++ b/extensions/source/config/ldap/ldapuserprofilebe.cxx
@@ -147,7 +147,7 @@ bool LdapUserProfileBe::readLdapConfiguration(
getLdapStringParam(xAccess, kUser, definition->mAnonUser);
getLdapStringParam(xAccess, kPassword, definition->mAnonCredentials);
}
- catch (uno::Exception & e)
+ catch (const uno::Exception & e)
{
OSL_TRACE("LdapUserProfileBackend: access to configuration data failed: %s",
rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).getStr() );