mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
no more misspelling of list for Iceman
This commit is contained in:
@@ -274,6 +274,14 @@ int CmdsParse(const command_t Commands[], const char *Cmd) {
|
||||
|
||||
str_lower(cmd_name);
|
||||
|
||||
// iceman: I mistyped "list" so many times with "lsit". No more.
|
||||
char *lsit = strstr(cmd_name, "lsit");
|
||||
if (lsit) {
|
||||
lsit[1] = lsit[2] ^ lsit[1];
|
||||
lsit[2] = lsit[1] ^ lsit[2];
|
||||
lsit[1] = lsit[2] ^ lsit[1];
|
||||
}
|
||||
|
||||
// Comment
|
||||
if (cmd_name[0] == '#')
|
||||
return PM3_SUCCESS;
|
||||
|
||||
Reference in New Issue
Block a user