diff options
| author | vanhauser-thc <vh@thc.org> | 2023-06-01 12:19:45 +0200 |
|---|---|---|
| committer | vanhauser-thc <vh@thc.org> | 2023-06-01 12:19:45 +0200 |
| commit | 9324f3f6289c62451e2add1f7553a7eda0d7d642 (patch) | |
| tree | b4d38dbca9ca69eb04002a531997e39a384987b4 /afl-cmin.bash | |
| parent | 63a7a816e796c7ea05b4c224e0167502dbb91f2f (diff) | |
| download | afl++-9324f3f6289c62451e2add1f7553a7eda0d7d642.tar.gz | |
rewrote PCGUARD
Diffstat (limited to 'afl-cmin.bash')
| -rwxr-xr-x | afl-cmin.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/afl-cmin.bash b/afl-cmin.bash index d390ff65..dc6d5342 100755 --- a/afl-cmin.bash +++ b/afl-cmin.bash @@ -206,7 +206,7 @@ fi # Check for obvious errors. -if [ ! "$T_ARG" = "" -a ! "$F_ARG" = "" -a ! "$NYX_MODE" == 1 ]; then +if [ ! "$T_ARG" = "" -a -n "$F_ARG" -a ! "$NYX_MODE" == 1 ]; then echo "[-] Error: -T and -f can not be used together." 1>&2 exit 1 fi @@ -323,7 +323,7 @@ if [ ! "$T_ARG" = "" ]; then fi fi else - if [ "$F_ARG" = ""]; then + if [ -z "$F_ARG" ]; then echo "[*] Are you aware of the '-T all' parallelize option that massively improves the speed?" fi fi |
