-a default

This commit is contained in:
vanhauser-thc
2023-09-13 09:39:06 +02:00
parent 3b835b7c8b
commit 98eed79f57

View File

@ -536,6 +536,10 @@ int main(int argc, char **argv_orig, char **envp) {
afl->input_mode = 2;
} else if (!stricmp(optarg, "def") || !stricmp(optarg, "default")) {
afl->input_mode = 0;
} else {
FATAL("-a input mode needs to be \"text\" or \"binary\".");