diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-10-06 17:37:54 -0400 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-10-06 17:41:27 -0400 |
commit | cdf1a5acbfc09742c3d04de038722b273381f78d (patch) | |
tree | 057c0fffa0f17c4420379a580f25fcbfa8e5029c /src/share/ma/list_certifiers | |
parent | e1ba8a123a9a75bce92a044990f02d8ac28135b3 (diff) |
Fix more calls to gpg_shere, finishing what was started in 90166e0bb8e4ebc1c1174d9bc2021c604b7a1bd7
There were another calls to gpg_sphere that were packing everything
into a single argument. Since we fixed the need to do that, we fix
all these other calls that were fixed in the first round.
Diffstat (limited to 'src/share/ma/list_certifiers')
-rw-r--r-- | src/share/ma/list_certifiers | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/ma/list_certifiers b/src/share/ma/list_certifiers index 789eb9d..56d52da 100644 --- a/src/share/ma/list_certifiers +++ b/src/share/ma/list_certifiers @@ -38,7 +38,7 @@ authgrip=$(core_fingerprint | cut -b 25-40) # fingerprint, the trust depth, the trust level (60 == marginal, 120 # == full), and the domain regex (if any): -gpg_sphere "--fingerprint --with-colons --fixed-list-mode --check-sigs" | \ +gpg_sphere --fingerprint --with-colons --fixed-list-mode --check-sigs | \ cut -f 1,2,5,8,9,10 -d: | \ egrep '^(fpr:::::|uat:|uid:|sig:!:'"$authgrip"':[[:digit:]]+ [[:digit:]]+:)' | \ while IFS=: read -r type validity grip trustparams trustdomain fpr ; do |