mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-03 19:43:09 +08:00
FIX: wrong varname, Good catch of @jamchamb 4b12061bee
This commit is contained in:
parent
19d9376c16
commit
d25518be59
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ local function read15693()
|
|||
return nil, "15693 sysinfo: no answer"
|
||||
end
|
||||
|
||||
local count,cmd,recvLen,arg1,arg2 = bin.unpack('LLLL',result)
|
||||
local count,cmd,recvlen,arg1,arg2 = bin.unpack('LLLL',result)
|
||||
data = string.sub(result,recvlen)
|
||||
info, err = parse15693(data)
|
||||
|
||||
|
|
Loading…
Reference in a new issue