]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
CHG: clearCommandBuffer(); before calling cmdparser.
authoriceman1001 <iceman@iuse.se>
Sun, 14 Feb 2016 14:24:11 +0000 (15:24 +0100)
committericeman1001 <iceman@iuse.se>
Sun, 14 Feb 2016 14:24:11 +0000 (15:24 +0100)
15 files changed:
client/cmddata.c
client/cmdhf.c
client/cmdhw.c
client/cmdlf.c
client/cmdlfawid.c
client/cmdlfem4x.c
client/cmdlfhid.c
client/cmdlfhitag.c
client/cmdlfio.c
client/cmdlfpcf7931.c
client/cmdlfpresco.c
client/cmdlft55xx.c
client/cmdlfti.c
client/cmdlfviking.c
client/cmdscript.c

index ab89bb30bd128835a585b0c5947b60a2b20b6793..23863131833b09dc74dbd7e9db0bffb96f1c81eb 100644 (file)
@@ -2411,8 +2411,8 @@ static command_t CommandTable[] =
        {NULL, NULL, 0, NULL}
 };
 
-int CmdData(const char *Cmd)
-{
+int CmdData(const char *Cmd){
+       clearCommandBuffer();
        CmdsParse(CommandTable, Cmd);
        return 0;
 }
index f6fb3a9925f0f2678eb5e766da9f38f94208e1c2..be842a34dce40f0e60b280c45df43a664ad8e6e5 100644 (file)
@@ -783,14 +783,13 @@ static command_t CommandTable[] =
        {NULL, NULL, 0, NULL}
 };
 
-int CmdHF(const char *Cmd)
-{
-  CmdsParse(CommandTable, Cmd);
-  return 0; 
+int CmdHF(const char *Cmd) {
+       clearCommandBuffer();
+       CmdsParse(CommandTable, Cmd);
+       return 0; 
 }
 
-int CmdHelp(const char *Cmd)
-{
-  CmdsHelp(CommandTable);
-  return 0;
+int CmdHelp(const char *Cmd) {
+       CmdsHelp(CommandTable);
+       return 0;
 }
index 03f4186ffa000fcb023c774f897b283c502fe127..11112118949ecdd7a3364996bcb2520335cfe16d 100644 (file)
@@ -473,8 +473,8 @@ static command_t CommandTable[] =
        {NULL, NULL, 0, NULL}
 };
 
-int CmdHW(const char *Cmd)
-{
+int CmdHW(const char *Cmd) {
+       clearCommandBuffer();
        CmdsParse(CommandTable, Cmd);
        return 0;
 }
index 924e0fea5d3682b4982f5e03f20d6b22b5f3af3f..29fe6f124080b74247cdcfaf83a7991df9988236 100644 (file)
@@ -1236,14 +1236,13 @@ static command_t CommandTable[] =
        {NULL, NULL, 0, NULL}
 };
 
-int CmdLF(const char *Cmd)
-{
-  CmdsParse(CommandTable, Cmd);
-  return 0; 
+int CmdLF(const char *Cmd) {
+       clearCommandBuffer();
+       CmdsParse(CommandTable, Cmd);
+       return 0; 
 }
 
-int CmdHelp(const char *Cmd)
-{
-  CmdsHelp(CommandTable);
-  return 0;
+int CmdHelp(const char *Cmd) {
+       CmdsHelp(CommandTable);
+       return 0;
 }
index 4a2001391851e0bffe26011360aea17ef7d7df32..d98dee4f9356f57a55c30e08fb12eb35f7a4b061 100644 (file)
@@ -255,6 +255,7 @@ static command_t CommandTable[] = {
 };
 
 int CmdLFAWID(const char *Cmd) {
+       clearCommandBuffer();
        CmdsParse(CommandTable, Cmd);
        return 0;
 }
index 4eaabef36fc7753e616b00a5811c9f573f164ada..25cc075beeae9022835663e033bf30165c8b25d3 100644 (file)
@@ -611,14 +611,13 @@ static command_t CommandTable[] =
        {NULL, NULL, 0, NULL}
 };
 
-int CmdLFEM4X(const char *Cmd)
-{
+int CmdLFEM4X(const char *Cmd) {
+       clearCommandBuffer();
        CmdsParse(CommandTable, Cmd);
        return 0;
 }
 
-int CmdHelp(const char *Cmd)
-{
+int CmdHelp(const char *Cmd) {
        CmdsHelp(CommandTable);
        return 0;
 }
index 85d72b67afc7be44b4f5b080ff28936a406b71d0..ff25d07e6af7bcd385d99f6320e9a282b334dc3e 100644 (file)
@@ -372,6 +372,7 @@ static command_t CommandTable[] = {
 };
 
 int CmdLFHID(const char *Cmd) {
+       clearCommandBuffer();
        CmdsParse(CommandTable, Cmd);
        return 0;
 }
index 81822eb69875c162c8dae4da20c6198ffe0569a7..95d85c6e1c65f47897da3bc80a274d7073d7317e 100644 (file)
@@ -267,14 +267,13 @@ static command_t CommandTable[] = {
        {NULL, NULL, 0, NULL}
 };
 
-int CmdLFHitag(const char *Cmd)
-{
+int CmdLFHitag(const char *Cmd) {
+       clearCommandBuffer();
        CmdsParse(CommandTable, Cmd);
        return 0;
 }
 
-int CmdHelp(const char *Cmd)
-{
+int CmdHelp(const char *Cmd) {
        CmdsHelp(CommandTable);
        return 0;
 }
index aa21c44babed25eaf079db697c7351afcb7fcc84..5c70f99d98d8ff3af1e554c9b70db59c73fefdf0 100644 (file)
@@ -73,14 +73,13 @@ static command_t CommandTable[] =
   {NULL, NULL, 0, NULL}
 };
 
-int CmdLFIO(const char *Cmd)
-{
-  CmdsParse(CommandTable, Cmd);
-  return 0; 
+int CmdLFIO(const char *Cmd){
+       clearCommandBuffer();
+       CmdsParse(CommandTable, Cmd);
+       return 0; 
 }
 
-int CmdHelp(const char *Cmd)
-{
-  CmdsHelp(CommandTable);
-  return 0;
+int CmdHelp(const char *Cmd) {
+       CmdsHelp(CommandTable);
+       return 0;
 }
index 23efd2e7336b03543c605001fb24a1060c78e010..5cc576fe5bb9f436a1ba107d9509bdd355c639c4 100644 (file)
@@ -165,14 +165,13 @@ static command_t CommandTable[] =
        {NULL, NULL, 0, NULL}
 };
 
-int CmdLFPCF7931(const char *Cmd)
-{
+int CmdLFPCF7931(const char *Cmd) {
+       clearCommandBuffer();
        CmdsParse(CommandTable, Cmd);
        return 0;
 }
 
-int CmdHelp(const char *Cmd)
-{
+int CmdHelp(const char *Cmd) {
        CmdsHelp(CommandTable);
        return 0;
 }
index e6ac19e4fabceeddd8122b8d0f4b7165d8672f2b..20b42bc1a7c473de2fb5cac4bee337b4a43c94c5 100644 (file)
@@ -212,6 +212,7 @@ static command_t CommandTable[] = {
 };
 
 int CmdLFPresco(const char *Cmd) {
+       clearCommandBuffer();
     CmdsParse(CommandTable, Cmd);
     return 0;
 }
index 7684bcc721fdb5adda1606d937bbb90d772c20b3..d104d7d77e37d6f9aa4698ca92a0da225058817a 100644 (file)
@@ -1550,11 +1550,12 @@ static command_t CommandTable[] = {
 };\r
 \r
 int CmdLFT55XX(const char *Cmd) {\r
-  CmdsParse(CommandTable, Cmd);\r
-  return 0;\r
+       clearCommandBuffer();\r
+       CmdsParse(CommandTable, Cmd);\r
+       return 0;\r
 }\r
 \r
 int CmdHelp(const char *Cmd) {\r
-  CmdsHelp(CommandTable);\r
-  return 0;\r
+       CmdsHelp(CommandTable);\r
+       return 0;\r
 }\r
index 66b2cd8b33cd58a5606b84ed2a11319c8e4bc858..29168787dca1453511c4970762f7808cfeb1f240 100644 (file)
@@ -298,11 +298,12 @@ static command_t CommandTable[] = {
 };
 
 int CmdLFTI(const char *Cmd){
-  CmdsParse(CommandTable, Cmd);
-  return 0;
+       clearCommandBuffer();
+       CmdsParse(CommandTable, Cmd);
+       return 0;
 }
 
 int CmdHelp(const char *Cmd){
-  CmdsHelp(CommandTable);
-  return 0;
+       CmdsHelp(CommandTable);
+       return 0;
 }
index 6d3362f702f805a07d994ccad2e0fb5c2f8cebe4..b91aced8eeb567738e24063cfd422f3668935f88 100644 (file)
@@ -126,6 +126,7 @@ static command_t CommandTable[] = {
 };
 
 int CmdLFViking(const char *Cmd) {
+       clearCommandBuffer();
     CmdsParse(CommandTable, Cmd);
     return 0;
 }
index 730f4e96ab26dd78e3392015af2ad5ef6d82a8af..b8c971581f05daa8b772e8ba491e36eae0e4a607 100644 (file)
@@ -98,10 +98,10 @@ int CmdList(const char *Cmd)
  * @param Cmd
  * @return
  */
-int CmdScript(const char *Cmd)
-{
-  CmdsParse(CommandTable, Cmd);
-  return 0;
+int CmdScript(const char *Cmd) {
+       clearCommandBuffer();
+       CmdsParse(CommandTable, Cmd);
+       return 0;
 }
 /**
  * Utility to check the ending of a string (used to check file suffix)
Impressum, Datenschutz