mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 22:03:19 -07:00
small fix
This commit is contained in:
parent
7e4b449d31
commit
21572097a4
1 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ int CmdHFFidoRegister(const char *cmd) {
|
|||
}
|
||||
|
||||
if (sw != 0x9000) {
|
||||
PrintAndLog("Can't execute register command. APDU response status: %04x - %s", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
||||
PrintAndLog("ERROR execute register command. APDU response status: %04x - %s", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
||||
return 3;
|
||||
}
|
||||
|
||||
|
@ -220,7 +220,7 @@ int CmdHFFidoAuthenticate(const char *cmd) {
|
|||
}
|
||||
|
||||
if (sw != 0x9000) {
|
||||
PrintAndLog("Can't execute authentication command. APDU response status: %04x - %s", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
||||
PrintAndLog("ERROR execute authentication command. APDU response status: %04x - %s", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
||||
return 3;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue