diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2010-03-18 11:11:15 +0100 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2010-03-18 11:11:15 +0100 |
commit | e590adb726cb05135bcd04e43117e2a77ec6f41f (patch) | |
tree | 72c5285132e63329592dc416cfe3d09a0e785342 /ucbhelper | |
parent | 7ea91da6ac4e351d006e09f142f0fd808cd311f0 (diff) |
#i110213# - credentials handling improvements.
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/simpleauthenticationrequest.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucbhelper/source/provider/simpleauthenticationrequest.cxx b/ucbhelper/source/provider/simpleauthenticationrequest.cxx index b4804912ca38..4979d8f5661a 100644 --- a/ucbhelper/source/provider/simpleauthenticationrequest.cxx +++ b/ucbhelper/source/provider/simpleauthenticationrequest.cxx @@ -67,7 +67,7 @@ SimpleAuthenticationRequest::SimpleAuthenticationRequest( sal_True, sal_True, aRequest.HasAccount, - sal_False, + sal_True, sal_False ); } //========================================================================= @@ -149,7 +149,7 @@ SimpleAuthenticationRequest::SimpleAuthenticationRequest( eUserNameType == ENTITY_MODIFY, ePasswordType == ENTITY_MODIFY, eAccountType == ENTITY_MODIFY, - sal_False, + sal_True, sal_False ); } @@ -216,7 +216,7 @@ void SimpleAuthenticationRequest::initialize( aRememberModes[ 0 ] = ucb::RememberAuthentication_NO; aRememberModes[ 1 ] = ucb::RememberAuthentication_SESSION; if (bAllowPersistentStoring) - aRememberModes[ 1 ] = ucb::RememberAuthentication_PERSISTENT; + aRememberModes[ 2 ] = ucb::RememberAuthentication_PERSISTENT; m_xAuthSupplier = new InteractionSupplyAuthentication( |