From 7eee2acfbf7317ac6adac2d319ecbe3a178af6e7 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 7 Apr 2019 12:10:52 +0200 Subject: [PATCH] more crc overshadow --- armsrc/iso15693.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iso15693.c b/armsrc/iso15693.c index 4afb54c9f..998c43520 100644 --- a/armsrc/iso15693.c +++ b/armsrc/iso15693.c @@ -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));