Skip to content

Commit

Permalink
fido2: actually drop -v flag
Browse files Browse the repository at this point in the history
Commit 2a9d70d only
dropped the flag on mount but not on `-init`.

Also drop it on `-init`.

Fixes #571 (part II)
  • Loading branch information
rfjakob committed Jul 29, 2021
1 parent 51bddd8 commit e83b79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/fido2/fido2.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit e83b79b

Please sign in to comment.