From: weasel Date: Mon, 27 Jun 2005 16:52:48 +0000 (+0000) Subject: Fix it to actually work X-Git-Url: http://git.sthu.org/?a=commitdiff_plain;h=fd2d106f713fb17bf75f4aca2e2b21a9727b398f;hp=f575aee972b1dc5645c1615ceb03803ab5c1e741;p=pgp-tools.git Fix it to actually work git-svn-id: svn://svn.debian.org/pgp-tools/trunk@84 b513b33f-fedd-0310-b452-c3deb5f4c849 --- diff --git a/caff/pgp-fixkey b/caff/pgp-fixkey index 75da794..d772af7 100755 --- a/caff/pgp-fixkey +++ b/caff/pgp-fixkey @@ -325,7 +325,7 @@ for my $keyid (@KEYIDS) { if (defined $line) { # only if we found a sig here - we never remove revocation packets for instance debug("[sigremoval] doing line $line."); my ($dummy1, $dummy2, $dummy3, $dummy4, $signer, $created, $dummy7, $dummy8, $dummy9) = split /:/, $line; - if ($signer eq ('-1' x 16)) { + if ($signer eq ('0' x 16)) { debug("[sigremoval] not interested in that sig ($signer)."); $answer = "yes"; };