mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
fixed offset in 'hf 15 cmd read' to avoid losing the first octet/byte
This commit is contained in:
parent
e8da774090
commit
382223b9a9
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue