summaryrefslogtreecommitdiffstats
path: root/sq
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2021-04-07 22:45:44 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2021-04-09 13:14:00 +0200
commit8e95666b6613a4390a38e2cf86bd9ca6289938f9 (patch)
tree29b2afbf266a6e2b99192c0ea55d363e8e90d4a5 /sq
parent792dfa2105e0a75a27ebffdc1cf0ab8873deaac1 (diff)
Lint: Remove redundant clone().
- https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
Diffstat (limited to 'sq')
-rw-r--r--sq/src/commands/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sq/src/commands/mod.rs b/sq/src/commands/mod.rs
index c216d35e..ee185be7 100644
--- a/sq/src/commands/mod.rs
+++ b/sq/src/commands/mod.rs
@@ -346,7 +346,7 @@ impl<'a> VerificationHelper for VHelper<'a> {
}).collect();
// Explicitly provided keys are trusted.
- self.trusted = seen.clone();
+ self.trusted = seen;
Ok(certs)
}