From: Don Armstrong Date: Wed, 14 Dec 2005 03:18:14 +0000 (+0000) Subject: * Fix the unknown key id comparison to be case insensitive X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3b036202964947d335cac180a80de037634430fc;p=bin.git * Fix the unknown key id comparison to be case insensitive --- diff --git a/checksigs b/checksigs index d0467f3..c45b8d2 100755 --- a/checksigs +++ b/checksigs @@ -30,7 +30,7 @@ sub _get_unknown_keys($$){ $owner_trust,$user_id,$signature_class,$key_capabilities, $smime_fingerprint,$flag_field, ) = split(/\:/,$key_record); - next unless defined $user_id and $user_id eq '[User id not found]'; + next unless defined $user_id and lc($user_id) eq lc('[User ID not found]'); qx($config->{gpg_command} --recv-keys $full_key_id 2>/dev/null); print "Retreveved key: 0x".(substr $full_key_id, -8)."\n"; }