do not display an error when authentication failed
This commit is contained in:
parent
451f2fa29c
commit
25e1b8a3c6
1 changed files with 3 additions and 0 deletions
|
@ -110,6 +110,9 @@ nfc_initiator_mifare_cmd(nfc_device *pnd, const mifare_cmd mc, const uint8_t ui8
|
||||||
// authenticated on a sector but the requested MIFARE cmd (read, write)
|
// authenticated on a sector but the requested MIFARE cmd (read, write)
|
||||||
// is not permitted by current acces bytes;
|
// is not permitted by current acces bytes;
|
||||||
// So there is nothing to do here.
|
// So there is nothing to do here.
|
||||||
|
} else if (res == NFC_ETGRELEASED) {
|
||||||
|
// If AUTH_* command fails, returned error is NFC_ETGRELEASED
|
||||||
|
// So there is nothing to do here. (don't hurt the user ;-))
|
||||||
} else {
|
} else {
|
||||||
nfc_perror(pnd, "nfc_initiator_transceive_bytes");
|
nfc_perror(pnd, "nfc_initiator_transceive_bytes");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue