X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/035303ac5f3e5e38cfa79a3a4c0d0bf76e70bd6b..6cacefa48d89ec6f87a637ef2b69f31f80165913:/client/cmdparser.c diff --git a/client/cmdparser.c b/client/cmdparser.c index 4f6e2463..7ea1bf47 100644 --- a/client/cmdparser.c +++ b/client/cmdparser.c @@ -12,6 +12,7 @@ #include #include "ui.h" #include "cmdparser.h" +#include "proxmark3.h" void CmdsHelp(const command_t Commands[]) { @@ -55,7 +56,7 @@ void CmdsParse(const command_t Commands[], const char *Cmd) ++len; Commands[i].Parse(Cmd + len); } else { - // show help (always first in array) for selected hierarchy or if command not recognised + // show help for selected hierarchy or if command not recognised CmdsHelp(Commands); } }