mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-08 17:18:10 +08:00
boolean fix in 'hf 15 cmd read' using Adrian's second patch from issue 20
This commit is contained in:
parent
e4da8ed0bb
commit
e8da774090
1 changed files with 1 additions and 1 deletions
|
@ -669,7 +669,7 @@ int CmdHF15CmdRead(const char *Cmd) {
|
|||
}
|
||||
strcat(output," ");
|
||||
for ( int i=2; i<r->arg[0]-2; i++) {
|
||||
sprintf(output+strlen(output),"%c",recv[i]>31 || recv[i]<127?recv[i]:'.');
|
||||
sprintf(output+strlen(output),"%c",recv[i]>31 && recv[i]<127?recv[i]:'.');
|
||||
}
|
||||
PrintAndLog("%s",output);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue