summaryrefslogtreecommitdiffstats
path: root/autocrypt
diff options
context:
space:
mode:
Diffstat (limited to 'autocrypt')
-rw-r--r--autocrypt/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/autocrypt/src/lib.rs b/autocrypt/src/lib.rs
index 64b7fa58..479aeb8d 100644
--- a/autocrypt/src/lib.rs
+++ b/autocrypt/src/lib.rs
@@ -120,7 +120,7 @@ impl AutocryptHeader {
// The subkeys and the most recent selfsig.
for skb in cert.keys().with_policy(policy, None).subkeys() {
// Skip if revoked.
- if let RevocationStatus::Revoked(_) = skb.revoked() {
+ if let RevocationStatus::Revoked(_) = skb.revocation_status() {
continue;
}