summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipc/src/lib.rs1
-rw-r--r--openpgp/src/cert/amalgamation.rs5
2 files changed, 3 insertions, 3 deletions
diff --git a/ipc/src/lib.rs b/ipc/src/lib.rs
index bda80341..3f1c1138 100644
--- a/ipc/src/lib.rs
+++ b/ipc/src/lib.rs
@@ -532,6 +532,7 @@ fn wsa_cleanup() {
}
}
+#[allow(clippy::let_and_return)]
pub(crate) fn new_background_command<S>(program: S) -> Command
where
S: AsRef<std::ffi::OsStr>,
diff --git a/openpgp/src/cert/amalgamation.rs b/openpgp/src/cert/amalgamation.rs
index f7c4e51d..9e3c31a1 100644
--- a/openpgp/src/cert/amalgamation.rs
+++ b/openpgp/src/cert/amalgamation.rs
@@ -1109,9 +1109,8 @@ where C: IntoIterator<Item = S>,
let creation_time =
time::SystemTime::now() - time::Duration::new(SIG_BACKDATE_BY, 0);
- let template = SignatureBuilder::new(SignatureType::AttestationKey)
- .set_signature_creation_time(creation_time)?;
- template
+ SignatureBuilder::new(SignatureType::AttestationKey)
+ .set_signature_creation_time(creation_time)?
};
let template = template