From 570bf2a648f14b34c4c45d3890b7300529a82d37 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Fri, 1 Jul 2016 10:56:57 +0200 Subject: [PATCH] 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 1cfccd75..88a472fb 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))