diff options
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index 0aa5c158..0fb0ffe0 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -892,7 +892,12 @@ int main(int argc, char** argv) { } - if (in_dir) at_file = "@@"; + if (in_dir) { + + if (at_file) PFATAL("Options -A and -i are mutually exclusive"); + at_file = "@@"; + + } detect_file_args(argv + optind, at_file); |