mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
fix: 'lf search' - indala wrong identified
This commit is contained in:
parent
9f26c0d6b7
commit
49ba544190
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ int CmdIndalaDemod(const char *Cmd) {
|
||||||
idx = indala224decode(DemodBuffer, &size, &invert);
|
idx = indala224decode(DemodBuffer, &size, &invert);
|
||||||
if (idx < 0 || size != 224) {
|
if (idx < 0 || size != 224) {
|
||||||
PrintAndLogEx(DEBUG, "DEBUG: Error - Indala wrong size, expected [64|224] got: %d (startindex %i)", size, idx);
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Indala wrong size, expected [64|224] got: %d (startindex %i)", size, idx);
|
||||||
return -1;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue