[Pkg-gnupg-commit] [gpgme] 188/412: core: Fix identify for armored detached sigs

Daniel Kahn Gillmor dkg at fifthhorseman.net
Thu Sep 22 21:26:44 UTC 2016


This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch master
in repository gpgme.

commit 570bf2a648f14b34c4c45d3890b7300529a82d37
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Fri Jul 1 10:56:57 2016 +0200

    core: Fix identify for armored detached sigs
    
    * src/data-identify.c (basic_detection): Return signature for
    signature.
    
    --
    This causes identify to return signature for both binary and
    ascii armored detached signatures where previously it would
    have returned signed for armored signatures and signature for
    binary signatures.
    
    GnuPG-Bug-Id: 2314
---
 src/data-identify.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/data-identify.c b/src/data-identify.c
index 1cfccd7..88a472f 100644
--- a/src/data-identify.c
+++ b/src/data-identify.c
@@ -443,7 +443,7 @@ basic_detection (char *data, size_t datalen)
           if (!strncmp (s+11, "PGP ", 4))
             {
               if (!strncmp (s+15, "SIGNATURE", 9))
-                return GPGME_DATA_TYPE_PGP_SIGNED;
+                return GPGME_DATA_TYPE_PGP_SIGNATURE;
               if (!strncmp (s+15, "SIGNED MESSAGE", 14))
                 return GPGME_DATA_TYPE_PGP_SIGNED;
               if (!strncmp (s+15, "PUBLIC KEY BLOCK", 16))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gpgme.git



More information about the Pkg-gnupg-commit mailing list