X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/035303ac5f3e5e38cfa79a3a4c0d0bf76e70bd6b..ba8b5c173b20a92036384e114f9b5827de7596dc:/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); } }