Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sosthene-nitrokey committed Oct 6, 2023
1 parent 093e2fb commit d8420dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ctap_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ where

let instruction: u8 = apdu.instruction().into();
match instruction {
0x00 | 0x01 | 0x02 => handle_ctap1(self, apdu.data(), response), //self.call_authenticator_u2f(apdu, response),
0..=2 => handle_ctap1(self, apdu.data(), response), //self.call_authenticator_u2f(apdu, response),

_ => {
match ctaphid::Command::try_from(instruction) {
Expand Down

0 comments on commit d8420dd

Please sign in to comment.