mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
chg: cliparse should have atleast same file_max_path_len
This commit is contained in:
parent
cb614f3f11
commit
61be7c7c30
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ typedef struct {
|
||||||
const char *programName;
|
const char *programName;
|
||||||
const char *programHint;
|
const char *programHint;
|
||||||
const char *programHelp;
|
const char *programHelp;
|
||||||
char buf[500];
|
char buf[1024 + 60];
|
||||||
} CLIParserContext;
|
} CLIParserContext;
|
||||||
int CLIParserInit(CLIParserContext **ctx, const char *vprogramName, const char *vprogramHint, const char *vprogramHelp);
|
int CLIParserInit(CLIParserContext **ctx, const char *vprogramName, const char *vprogramHint, const char *vprogramHelp);
|
||||||
int CLIParserParseString(CLIParserContext *ctx, const char *str, void *vargtable[], size_t vargtableLen, bool allowEmptyExec);
|
int CLIParserParseString(CLIParserContext *ctx, const char *str, void *vargtable[], size_t vargtableLen, bool allowEmptyExec);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue