aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2017-03-05 11:19:17 -0500
committerWladimir J. van der Laan <laanwj@gmail.com>2017-03-05 19:09:49 +0100
commit43a987c1cbcd04b9c59052606c3c31c56abc826e (patch)
treed3c690f7e75f3dc9670ad4481124cc2ffe246314 /contrib
parentccf5e43ce0a1912d0324cf189fe28cf22b98a061 (diff)
downloadbitcoin-43a987c1cbcd04b9c59052606c3c31c56abc826e.tar.xz
Fix regsig checking for subkey sigs in verify-commitsv0.14.0
Rebased-From: bbd757940bcb0628df6f7a5bd1fb348cf2290502
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/verify-commits/gpg.sh8
1 files changed, 2 insertions, 6 deletions
diff --git a/contrib/verify-commits/gpg.sh b/contrib/verify-commits/gpg.sh
index 2944bb269d..4b2649eaaa 100755
--- a/contrib/verify-commits/gpg.sh
+++ b/contrib/verify-commits/gpg.sh
@@ -17,12 +17,8 @@ for LINE in $(echo "$INPUT" | gpg --trust-model always "$@" 2>/dev/null); do
;;
"[GNUPG:] REVKEYSIG "*)
[ "$BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG" != 1 ] && exit 1
- while read KEY; do
- case "$LINE" in "[GNUPG:] REVKEYSIG ${KEY#????????????????????????} "*)
- REVSIG=true
- GOODREVSIG="[GNUPG:] GOODSIG ${KEY#????????????????????????} "
- esac
- done < ./contrib/verify-commits/trusted-keys
+ REVSIG=true
+ GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
;;
esac
done