diff options
Diffstat (limited to 'internal/fido2/fido2.go')
-rw-r--r-- | internal/fido2/fido2.go | 2 |
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) } |