diff options
author | Mikhail Voytenko <mav@openoffice.org> | 2011-03-27 22:08:02 +0200 |
---|---|---|
committer | Mikhail Voytenko <mav@openoffice.org> | 2011-03-27 22:08:02 +0200 |
commit | 65d4580044ab82df5ef30f00875e98d61e000ae4 (patch) | |
tree | cc480434fde722b1a13cbb8ebe933081c55e4ad3 /sfx2 | |
parent | 1933664b4051f65859e1e1f327622974e0814d92 (diff) |
mav60: #164341# use simple nss initialization in case mscrypto is used
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appopen.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sfx2/source/appl/appopen.cxx b/sfx2/source/appl/appopen.cxx index 281a87c962f7..8b76024c1afb 100644 --- a/sfx2/source/appl/appopen.cxx +++ b/sfx2/source/appl/appopen.cxx @@ -288,8 +288,9 @@ private: } catch( const uno::Exception& ) { - // unknown error, do not try to ask again - eResult = ::comphelper::DocPasswordVerifierResult_ABORT; + // unknown error, report it as wrong password + // TODO/LATER: we need an additional way to report unknown problems in this case + eResult = ::comphelper::DocPasswordVerifierResult_WRONG_PASSWORD; } return eResult; } |