aboutsummaryrefslogtreecommitdiffstats
path: root/src/pinentry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/pinentry.rs')
-rw-r--r--src/pinentry.rs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/pinentry.rs b/src/pinentry.rs
index b03c94e..a4627c2 100644
--- a/src/pinentry.rs
+++ b/src/pinentry.rs
@@ -9,14 +9,13 @@ pub async fn getpin(
tty: Option<&str>,
) -> Result<crate::locked::Password> {
let mut opts = tokio::process::Command::new("pinentry");
- let opts = opts
- .stdin(std::process::Stdio::piped())
+ opts.stdin(std::process::Stdio::piped())
.stdout(std::process::Stdio::piped());
- let opts = if let Some(tty) = tty {
- opts.args(&["-T", tty, "-o", "0"])
+ if let Some(tty) = tty {
+ opts.args(&["-T", tty, "-o", "0"]);
} else {
- opts.args(&["-o", "0"])
- };
+ opts.args(&["-o", "0"]);
+ }
let mut child = opts.spawn().context(crate::error::Spawn)?;
// unwrap is safe because we specified stdin as piped in the command opts
// above