Skip to content

Commit

Permalink
Missed one fingerprint truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
singpolyma committed Jan 3, 2013
1 parent fc9dd07 commit 6c1805b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Data/OpenPGP.hs
Expand Up @@ -414,7 +414,7 @@ put_packet (SignaturePacket { version = v,
encode hash_head
] ++ map encode signature, 2)
where
keyid = fst $ head $ readHex keyidS :: Word64
keyid = fst $ head $ readHex $ takeFromEnd 16 keyidS :: Word64
Just (IssuerPacket keyidS) = find isIssuer unhashed_subpackets
isIssuer (IssuerPacket {}) = True
isIssuer _ = False
Expand Down

0 comments on commit 6c1805b

Please sign in to comment.