From: dn337t@gmail.com Date: Fri, 18 May 2012 09:07:39 +0000 (+0000) Subject: fixed offset in 'hf 15 cmd read' to avoid losing the first octet/byte X-Git-Tag: v1.0.0~219 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/382223b9a93ea4dbca25f65b3caa79a0b1d4dd35 fixed offset in 'hf 15 cmd read' to avoid losing the first octet/byte --- diff --git a/client/cmdhf15.c b/client/cmdhf15.c index d3d97681..29612c30 100644 --- a/client/cmdhf15.c +++ b/client/cmdhf15.c @@ -668,7 +668,7 @@ int CmdHF15CmdRead(const char *Cmd) { sprintf(output+strlen(output),"%02hX ",recv[i]); } strcat(output," "); - for ( int i=2; iarg[0]-2; i++) { + for ( int i=1; iarg[0]-2; i++) { sprintf(output+strlen(output),"%c",recv[i]>31 && recv[i]<127?recv[i]:'.'); } PrintAndLog("%s",output);