aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-10-27 22:48:09 -0400
committerJesse Luehrs <doy@tozt.net>2021-10-27 22:48:09 -0400
commit3fa5908401237b643c69f84bbf4c69e1ca3e2484 (patch)
tree3d9870643f8403bc2d8aa8e9fd92b5ec5956595c
parente566ed23bdd494c9f5ed118328f0f38bbd06d441 (diff)
downloadrbw-3fa5908401237b643c69f84bbf4c69e1ca3e2484.tar.gz
rbw-3fa5908401237b643c69f84bbf4c69e1ca3e2484.zip
fix pinentry display
-rw-r--r--src/bin/rbw-agent/actions.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/rbw-agent/actions.rs b/src/bin/rbw-agent/actions.rs
index 5918e2c..8039618 100644
--- a/src/bin/rbw-agent/actions.rs
+++ b/src/bin/rbw-agent/actions.rs
@@ -32,7 +32,7 @@ pub async fn register(
};
let client_id = rbw::pinentry::getpin(
&config_pinentry().await?,
- "API key client_id",
+ "API key client__id",
&format!("Log in to {}", host),
err.as_deref(),
tty,
@@ -41,7 +41,7 @@ pub async fn register(
.context("failed to read client_id from pinentry")?;
let client_secret = rbw::pinentry::getpin(
&config_pinentry().await?,
- "API key client_secret",
+ "API key client__secret",
&format!("Log in to {}", host),
err.as_deref(),
tty,