mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 06:13:27 -07:00
Minor fix to the fix
This commit is contained in:
parent
ae86abb2fc
commit
56463d061e
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ function checkBlock(blockNo, keys, keyType)
|
||||||
while remaining > 0 do
|
while remaining > 0 do
|
||||||
local n,data = remaining, nil
|
local n,data = remaining, nil
|
||||||
if remaining > 85 then n = 85 end
|
if remaining > 85 then n = 85 end
|
||||||
local data = table.concat(keys,"",start,start + n)
|
local data = table.concat(keys, "", start, start + n - 1)
|
||||||
--print("data",data)
|
--print("data",data)
|
||||||
--print("data len", #data)
|
--print("data len", #data)
|
||||||
print(("Testing block %d, keytype %d, with %d keys"):format(blockNo, keyType, n))
|
print(("Testing block %d, keytype %d, with %d keys"):format(blockNo, keyType, n))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue