summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-03-29 12:18:47 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-03-29 12:18:47 +0000
commit0d3f50e826867b6a9469c84066ab61864e37f416 (patch)
tree6161db0409e000f61e0c44a351b15564450c673e /xmlsecurity
parentb36ab2f982eb22b72425566492d63ed91f29e846 (diff)
INTEGRATION: CWS xmlsec10 (1.5.4); FILE MERGED
2005/03/23 09:52:44 mmi 1.5.4.2: idl review Issue number: Submitted by: Reviewed by: 2005/03/16 09:56:04 pb 1.5.4.1: fix: #i44598# disorder fixed
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/dialogs/certificatechooser.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlsecurity/source/dialogs/certificatechooser.cxx b/xmlsecurity/source/dialogs/certificatechooser.cxx
index 88d9e0c26441..66cbd50441f0 100644
--- a/xmlsecurity/source/dialogs/certificatechooser.cxx
+++ b/xmlsecurity/source/dialogs/certificatechooser.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: certificatechooser.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: vg $ $Date: 2005-03-10 18:04:16 $
+ * last change: $Author: rt $ $Date: 2005-03-29 13:18:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -158,7 +158,7 @@ CertificateChooser::CertificateChooser( Window* _pParent, uno::Reference< dcss::
// Check if we have a private key for this...
long nCertificateCharacters = mxSecurityEnvironment->getCertificateCharacters( xCert );
- if ( !( nCertificateCharacters & security::CertificateCharacters::CERT_CHARACTER_HAS_PRIVATE_KEY ) )
+ if ( !( nCertificateCharacters & security::CertificateCharacters::HAS_PRIVATE_KEY ) )
bIgnoreThis = true;
}
@@ -175,9 +175,9 @@ CertificateChooser::CertificateChooser( Window* _pParent, uno::Reference< dcss::
{
String sEntry( XmlSec::GetContentPart( maCerts[ nC ]->getSubjectName() ) );
sEntry += '\t';
- sEntry += XmlSec::GetDateString( maCerts[ nC ]->getNotAfter() );
- sEntry += '\t';
sEntry += XmlSec::GetContentPart( maCerts[ nC ]->getIssuerName() );
+ sEntry += '\t';
+ sEntry += XmlSec::GetDateString( maCerts[ nC ]->getNotValidAfter() );
SvLBoxEntry* pEntry = maCertLB.InsertEntry( sEntry );
pEntry->SetUserData( ( void* )nC ); // missuse user data as index
}