mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-12 04:35:28 -07:00
fixed offset in 'hf 15 cmd read' to avoid losing the first octet/byte
This commit is contained in:
parent
e8da774090
commit
382223b9a9
@ -668,7 +668,7 @@ int CmdHF15CmdRead(const char *Cmd) {
|
||||
sprintf(output+strlen(output),"%02hX ",recv[i]);
|
||||
}
|
||||
strcat(output," ");
|
||||
for ( int i=2; i<r->arg[0]-2; i++) {
|
||||
for ( int i=1; i<r->arg[0]-2; i++) {
|
||||
sprintf(output+strlen(output),"%c",recv[i]>31 && recv[i]<127?recv[i]:'.');
|
||||
}
|
||||
PrintAndLog("%s",output);
|
||||
|
Loading…
x
Reference in New Issue
Block a user