aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-07-29 12:45:40 +0200
committerJakob Unterwurzacher2021-07-29 12:47:40 +0200
commite83b79b4c2e8619f0f9622bbafc39d04eeced3f0 (patch)
tree3ae159d0cea0a537f7c8c598c3473188aeb99b88
parent51bddd826ef29e5807b581dd037110e4502127cf (diff)
fido2: actually drop `-v` flag
Commit 2a9d70d48f4cc715a6864849cdec91ab08b6fd03 only dropped the flag on mount but not on `-init`. Also drop it on `-init`. Fixes https://github.com/rfjakob/gocryptfs/issues/571 (part II)
-rw-r--r--internal/fido2/fido2.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fido2/fido2.go b/internal/fido2/fido2.go
index 30121c0..663d65c 100644
--- a/internal/fido2/fido2.go
+++ b/internal/fido2/fido2.go
@@ -39,7 +39,7 @@ func callFidoCommand(command fidoCommand, device string, stdin []string) ([]stri
var cmd *exec.Cmd
switch command {
case cred:
- cmd = exec.Command("fido2-cred", "-M", "-h", "-v", device)
+ cmd = exec.Command("fido2-cred", "-M", "-h", device)
case assert:
cmd = exec.Command("fido2-assert", "-G", "-h", device)
}