From: iceman1001 Date: Thu, 5 Feb 2015 14:43:50 +0000 (+0100) Subject: FIX: LF TI WRITE inparameters didn't get copied by sscanf. This removes the "PRIu64... X-Git-Tag: v2.0.0-rc1~30^2 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/5c2b11eb3c094b08b5b31e20e9559ae838c79f73 FIX: LF TI WRITE inparameters didn't get copied by sscanf. This removes the "PRIu64" and uses the 012"llx" instead. --- diff --git a/client/cmdlfti.c b/client/cmdlfti.c index cb5fcd79..12956abd 100644 --- a/client/cmdlfti.c +++ b/client/cmdlfti.c @@ -273,7 +273,8 @@ int CmdTIWrite(const char *Cmd) UsbCommand c = {CMD_WRITE_TI_TYPE}; int res = 0; - res = sscanf(Cmd, "0x%"PRIu64"x 0x%"PRIu64"x 0x%"PRIu64"x ", &c.arg[0], &c.arg[1], &c.arg[2]); + res = sscanf(Cmd, "%012"llx" %012"llx" %012"llx"", &c.arg[0], &c.arg[1], &c.arg[2]); + if (res == 2) c.arg[2]=0; if (res < 2) PrintAndLog("Please specify the data as two hex strings, optionally the CRC as a third");