From dc0db358abe19481e475e10c32149b53370f1a1c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 30 May 2024 05:57:31 +0200 Subject: Merging upstream version 1.72.1+dfsg1. Signed-off-by: Daniel Baumann --- vendor/gix-credentials/src/program/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vendor/gix-credentials/src') diff --git a/vendor/gix-credentials/src/program/main.rs b/vendor/gix-credentials/src/program/main.rs index 062bcfc99..b3417f923 100644 --- a/vendor/gix-credentials/src/program/main.rs +++ b/vendor/gix-credentials/src/program/main.rs @@ -18,9 +18,9 @@ impl TryFrom for Action { fn try_from(value: OsString) -> Result { Ok(match value.to_str() { - Some("fill") | Some("get") => Action::Get, - Some("approve") | Some("store") => Action::Store, - Some("reject") | Some("erase") => Action::Erase, + Some("fill" | "get") => Action::Get, + Some("approve" | "store") => Action::Store, + Some("reject" | "erase") => Action::Erase, _ => return Err(Error::ActionInvalid { name: value }), }) } -- cgit v1.2.3