X-Git-Url: http://git.sthu.org/?a=blobdiff_plain;f=gpglist%2Fgpglist;h=58d5c1e691e0565b2d31c7bd28a0b91cf1a6f638;hb=b91e73280982b084eee83d1b7f559fc409417067;hp=398a177bb22426f487dc59f65772889a8005f08d;hpb=69675ad2603874fef5a6f7df3fd31bbb04ed01b5;p=pgp-tools.git diff --git a/gpglist/gpglist b/gpglist/gpglist index 398a177..58d5c1e 100755 --- a/gpglist/gpglist +++ b/gpglist/gpglist @@ -16,7 +16,7 @@ # documentation and/or other materials provided with the distribution. # 3. The name of the author may not be used to endorse or promote products # derived from this software without specific prior written permission. -# +# # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. @@ -35,7 +35,7 @@ my $key=shift @ARGV; if ( $key eq "" ) { die } - + open SIGS, "gpg --fixed-list-mode --with-colons --list-sigs $key 2>/dev/null |" or die "can't get gpg listing"; @@ -61,7 +61,7 @@ while () { $rev{$uid} = "x" if ($longkey eq $1); $sigs{$1}->{$uid} = "R"; next; - } + } if ( m/^uat:.:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:(.*):$/ ) { $uid = "Photo ID"; push @uids, $uid; @@ -75,7 +75,7 @@ while () { next if ( m/^(tru):/ ); print STDERR "hi, i'm a bug. please report me to my owner"; die "input: $_, key: $key"; -} +} close SIGS; my $n = scalar @uids -1; @@ -94,7 +94,7 @@ print "\n"; for my $id (sort keys %ids) { print((defined $sigs{$ids{$id}}->{$_} ? $sigs{$ids{$id}}->{$_} : " ") . " ") for (@uids); - print $ids{$id}." $id\n"; + print $ids{$id}." $id\n"; } for my $id (sort keys %unknownID) { print((defined $sigs{$id}->{$_} ? $sigs{$id}->{$_} : " ") . " ") for (@uids);