From 02b854237648861898b88b02809be3a81abcab93 Mon Sep 17 00:00:00 2001 From: weasel Date: Tue, 3 Jul 2007 14:04:58 +0000 Subject: [PATCH] And fix a code typo git-svn-id: svn://svn.debian.org/pgp-tools/trunk@337 b513b33f-fedd-0310-b452-c3deb5f4c849 --- caff/caff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caff/caff b/caff/caff index 791021a..a822927 100755 --- a/caff/caff +++ b/caff/caff @@ -779,7 +779,7 @@ sub send_mail($$$@) { (defined $CONFIG{'also-encrypt-to'})) { my $reason = $1; my $keyid = $2; - if (grep { %_ eq $keyid } @{$CONFIG{'also-encrypt-to'}}) { + if (grep { $_ eq $keyid } @{$CONFIG{'also-encrypt-to'}}) { warn("Could not encrypt to $keyid, specified in CONFIG{'also-encrypt-to'}. Try to update the key using gpg --homedir=\$HOME/caff/gnupghome --import ."); return; }; -- 2.30.2