Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
8d97d96a
Kaydet (Commit)
8d97d96a
authored
Eyl 07, 2004
tarafından
Jens-Heiner Rechtien
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#i10000#: workaround compile problems with gcc-3.4.1
üst
4d05ec4d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
securityenvironment_nssimpl.cxx
...ecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
+11
-2
No files found.
xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
Dosyayı görüntüle @
8d97d96a
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: securityenvironment_nssimpl.cxx,v $
*
* $Revision: 1.
8
$
* $Revision: 1.
9
$
*
* last change: $Author:
kz $ $Date: 2004-09-02 14:16:04
$
* last change: $Author:
hr $ $Date: 2004-09-07 11:40:23
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -745,7 +745,16 @@ sal_Int32 SecurityEnvironment_NssImpl :: verifyCertificate( const ::com::sun::st
validity
=
0x00000000
;
}
else
{
validity
=
::
com
::
sun
::
star
::
security
::
CertificateValidity
::
CERT_VALIDITY_INVALID
;
#if ( __GNUC__ == 3 && __GNUC_MINOR__ == 4 )
// Gcc-3.4.1 has a serious bug which prevents compiling this switch construct,
// if "status" in the switch statement is a signed integer type.
// It wrongly complains about "duplicate values".
// Note that all SEC_ERROR_* below are negativ enum values, starting from -0x2000
// This gross WORKAROUND should be removed as soon as possible.
switch
(
(
unsigned
int
)
status
)
{
#else
switch
(
status
)
{
#endif
case
SEC_ERROR_BAD_SIGNATURE
:
validity
|=
::
com
::
sun
::
star
::
security
::
CertificateValidity
::
CERT_VALIDITY_SIGNATURE_INVALID
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment