diff options
author | van Hauser <vh@thc.org> | 2020-08-31 18:44:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 18:44:28 +0200 |
commit | e93f78eca53e3b1542d109fd9b4c634831e9fd63 (patch) | |
tree | dd41be1ffcc9e471591d7c7bd899baf1987aeb97 /docs/parallel_fuzzing.md | |
parent | 17e1a72b3b5869852c406a3767d6eef5ce6132bd (diff) | |
parent | 338638b124f46ac9fda25efc0060910a781d199c (diff) | |
download | afl++-e93f78eca53e3b1542d109fd9b4c634831e9fd63.tar.gz |
Merge pull request #538 from ploppelop/patch-1
Update parallel_fuzzing.md
Diffstat (limited to 'docs/parallel_fuzzing.md')
-rw-r--r-- | docs/parallel_fuzzing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/parallel_fuzzing.md b/docs/parallel_fuzzing.md index 12895ac3..bf57ace8 100644 --- a/docs/parallel_fuzzing.md +++ b/docs/parallel_fuzzing.md @@ -146,7 +146,7 @@ write a simple script that performs two actions: ```sh for srchost in `cat HOSTLIST`; do for dsthost in `cat HOSTLIST`; do - test "$s" = "$d" && continue + test "$srchost" = "$dsthost" && continue ssh user@$srchost 'tar -kxzf -' < $dsthost.tgz done done |