summaryrefslogtreecommitdiffstats
path: root/gpg-interface.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-08-17 00:04:13 +0200
committerJunio C Hamano <gitster@pobox.com>2016-08-17 00:04:13 +0200
commitaf2b21ec3cab346fcb19f5794eec6317330cd2a3 (patch)
tree4421225e18fe1d4692214030f7279e2276ef8540 /gpg-interface.c
parentRelnotes: decribe the updates to the "text=auto" attribute (diff)
parentgpg-interface: prefer "long" key format output when verifying pgp signatures (diff)
downloadgit-af2b21ec3cab346fcb19f5794eec6317330cd2a3.tar.xz
git-af2b21ec3cab346fcb19f5794eec6317330cd2a3.zip
Merge branch 'lt/gpg-show-long-key-in-signature-verification-maint' into lt/gpg-show-long-key-in-signature-verification
Linus's original was rebased to apply to the maintenance track just in case binary distributors that are stuck in the past want to take it to their older codebase. Let's merge it up to more modern codebase that has Peff's gpg-interface clean-up topic that appeared after Git 2.9 was tagged. * lt/gpg-show-long-key-in-signature-verification-maint: gpg-interface: prefer "long" key format output when verifying pgp signatures
Diffstat (limited to 'gpg-interface.c')
-rw-r--r--gpg-interface.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gpg-interface.c b/gpg-interface.c
index 08356f92e7..8672edaf48 100644
--- a/gpg-interface.c
+++ b/gpg-interface.c
@@ -217,6 +217,7 @@ int verify_signed_buffer(const char *payload, size_t payload_size,
argv_array_pushl(&gpg.args,
gpg_program,
"--status-fd=1",
+ "--keyid-format=long",
"--verify", temp.filename.buf, "-",
NULL);