X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/29ce214c65d0d36679b8496dd8dddf4ea2b0ec23..dae31af21e6ead8318e0dbe4933a9dce4c1a79e5:/client/cmdlfjablotron.c diff --git a/client/cmdlfjablotron.c b/client/cmdlfjablotron.c index da4b0040..bbe39a52 100644 --- a/client/cmdlfjablotron.c +++ b/client/cmdlfjablotron.c @@ -18,7 +18,7 @@ int usage_lf_jablotron_clone(void){ PrintAndLog(" : jablotron card ID"); PrintAndLog(" : specify write to Q5 (t5555 instead of t55x7)"); PrintAndLog(""); - PrintAndLog("Sample: lf jablotron clone d 112233"); + PrintAndLog("Sample: lf jablotron clone 112233"); return 0; } @@ -31,7 +31,7 @@ int usage_lf_jablotron_sim(void) { PrintAndLog(" h : This help"); PrintAndLog(" : jablotron card ID"); PrintAndLog(""); - PrintAndLog("Sample: lf jablotron sim d 112233"); + PrintAndLog("Sample: lf jablotron sim 112233"); return 0; } @@ -144,7 +144,7 @@ int CmdJablotronClone(const char *Cmd) { // clearing the topbit needed for the preambl detection. if ((fullcode & 0x7FFFFFFFFF) != fullcode) { fullcode &= 0x7FFFFFFFFF; - PrintAndLog("Card Number Truncated to 40-bits: %"PRIx64, fullcode); + PrintAndLog("Card Number Truncated to 39bits: %"PRIx64, fullcode); } if ( !getJablotronBits(fullcode, bs)) { @@ -190,7 +190,7 @@ int CmdJablotronSim(const char *Cmd) { // clearing the topbit needed for the preambl detection. if ((fullcode & 0x7FFFFFFFFF) != fullcode) { fullcode &= 0x7FFFFFFFFF; - PrintAndLog("Card Number Truncated to 40-bits: %"PRIx64, fullcode); + PrintAndLog("Card Number Truncated to 39bits: %"PRIx64, fullcode); } uint8_t clk = 64, encoding = 2, separator = 0, invert = 1;