X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/978920b9fc813da9a3f9cd3a860f012b159bbba9..cbdcc89ae7404ac1c71a9e3824f8ee28ffb3724a:/client/cmdlfawid.c diff --git a/client/cmdlfawid.c b/client/cmdlfawid.c index 4a200139..6349fec7 100644 --- a/client/cmdlfawid.c +++ b/client/cmdlfawid.c @@ -44,8 +44,8 @@ int usage_lf_awid_sim(void) { PrintAndLog(""); PrintAndLog("Usage: lf awid sim "); PrintAndLog("Options :"); - PrintAndLog(" : 8-bit value AWID facility code"); - PrintAndLog(" : 16-bit value AWID card number"); + PrintAndLog(" : 8-bit value facility code"); + PrintAndLog(" : 16-bit value card number"); PrintAndLog(""); PrintAndLog("Sample : lf awid sim 224 1337"); return 0; @@ -58,8 +58,8 @@ int usage_lf_awid_clone(void) { PrintAndLog(""); PrintAndLog("Usage: lf awid clone "); PrintAndLog("Options :"); - PrintAndLog(" : 8-bit value AWID facility code"); - PrintAndLog(" : 16-bit value AWID card number"); + PrintAndLog(" : 8-bit value facility code"); + PrintAndLog(" : 16-bit value card number"); PrintAndLog(" Q5 : optional - clone to Q5 (T5555) instead of T55x7 chip"); PrintAndLog(""); PrintAndLog("Sample : lf awid clone 224 1337"); @@ -73,7 +73,7 @@ int usage_lf_awid_brute(void){ PrintAndLog(""); PrintAndLog("Usage: lf awid brute "); PrintAndLog("Options :"); - PrintAndLog(" : 8-bit value AWID facility code"); + PrintAndLog(" : 8-bit value facility code"); PrintAndLog(""); PrintAndLog("Sample : lf awid brute 224"); return 0; @@ -255,6 +255,7 @@ static command_t CommandTable[] = { }; int CmdLFAWID(const char *Cmd) { + clearCommandBuffer(); CmdsParse(CommandTable, Cmd); return 0; }