mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-10 02:04:39 +08:00
more crc overshadow
This commit is contained in:
parent
a8ad793f7f
commit
7eee2acfbf
1 changed files with 1 additions and 1 deletions
|
@ -780,7 +780,7 @@ void DbdecodeIso15693Answer(int len, uint8_t *d) {
|
|||
strncat(status, "No error ", DBD15STATLEN - strlen(status));
|
||||
}
|
||||
|
||||
if (CheckCrc(d, len))
|
||||
if (CheckCrc15(d, len))
|
||||
strncat(status, "[+] crc OK", DBD15STATLEN - strlen(status));
|
||||
else
|
||||
strncat(status, "[!] crc fail", DBD15STATLEN - strlen(status));
|
||||
|
|
Loading…
Reference in a new issue