fixed missing parameter

This commit is contained in:
Anže Jenšterle 2021-02-08 03:32:27 +01:00
commit 6d10525c09
No known key found for this signature in database
GPG key ID: 56821505069EBF5F

View file

@ -3890,9 +3890,11 @@ static int CmdHF14ADesEnumApplications(const char *Cmd) {
void *argtable[] = { void *argtable[] = {
arg_param_begin, arg_param_begin,
arg_lit0("b", "bruteforce", "Bruteforce AIDs if tag doesn't allow listing"),
arg_param_end arg_param_end
}; };
CLIExecWithReturn(ctx, Cmd, argtable, true); CLIExecWithReturn(ctx, Cmd, argtable, true);
bool bruteforce = arg_get_lit(ctx, 1);
CLIParserFree(ctx); CLIParserFree(ctx);
DropFieldDesfire(); DropFieldDesfire();