[Libreoffice-commits] core.git: xmlsecurity/source

Samuel Mehrbrodt Samuel.Mehrbrodt at cib.de
Mon Jul 10 13:51:20 UTC 2017


 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit efb24fc7bab19840d4959d22706719981dc8bac0
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date:   Mon Jul 10 10:38:26 2017 +0200

    tdf#109046 Show correct signature type for OpenPGP
    
    gpg4libre
    
    Change-Id: I9c05f68e16928d14a29058f5bb9aa35c90b8f48b
    Reviewed-on: https://gerrit.libreoffice.org/39744
    Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
    Tested-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>

diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
index 69a9a7d4ec60..85edf4391561 100644
--- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
+++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
@@ -576,8 +576,11 @@ void DigitalSignaturesDialog::ImplFillSignaturesBox()
             // Decide type string.
             if (maSignatureManager.mxStore.is())
             {
+                // OpenPGP
+                if (!rInfo.ouGpgCertificate.isEmpty())
+                    aType = "OpenPGP";
                 // XML based: XAdES or not.
-                if (!rInfo.ouCertDigest.isEmpty())
+                else if (!rInfo.ouCertDigest.isEmpty())
                     aType = "XAdES";
                 else
                     aType = "XML-DSig";


More information about the Libreoffice-commits mailing list