about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-05-05 20:19:04 +0200
committervan Hauser <vh@thc.org>2020-05-05 20:19:04 +0200
commitad3960580d4b462e53c98f82283cd11037558642 (patch)
treec769304aeba99037f50dc31453abd42155cc463c
parent00683d06c2dc4a021929f25c86b8b426542c4e40 (diff)
downloadafl++-ad3960580d4b462e53c98f82283cd11037558642.tar.gz
fixed typos
-rw-r--r--docs/Changelog.md4
-rw-r--r--docs/env_variables.md7
-rw-r--r--examples/afl_network_proxy/GNUmakefile2
3 files changed, 7 insertions, 6 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md
index e4ac8783..54564a5d 100644
--- a/docs/Changelog.md
+++ b/docs/Changelog.md
@@ -22,9 +22,9 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
      - fixes to LTO mode if instrumented edges > MAP_SIZE
      - CTX and NGRAM can now be used together
      - CTX and NGRAM are now also supported in CFG/INSTRIM mode
-     - AFL_LLVM_LAF_TRANSFORM_COMPARES could, fixed
+     - AFL_LLVM_LAF_TRANSFORM_COMPARES could crash, fixed
      - added AFL_LLVM_SKIP_NEVERZERO to skip the never zero coverage counter
-       implmentation. For targets with little or no loops or heavy called
+       implementation. For targets with few or no loops or heavily called
        functions. Gives a small performance boost.
   - qemu_mode:
     - add information on PIE/PIC load addresses for 32 bit
diff --git a/docs/env_variables.md b/docs/env_variables.md
index ab5808ec..ed81c8a3 100644
--- a/docs/env_variables.md
+++ b/docs/env_variables.md
@@ -102,9 +102,10 @@ Then there are a few specific features that are only available in llvm_mode:
         LTO - LTO instrumentation (see below)
         CTX - context sensitive instrumentation (see below)
         NGRAM-x - deeper previous location coverage (from NGRAM-2 up to NGRAM-16)
-      In CLASSIC (default) can can also specify CTX and/nor NGRAM, seperate
-      the options with a comma "," then, e.g.:
-        AFL_LLVM_INSTRUMENT=CLASSIC,CTX,NGRAM-4
+      In CLASSIC (default) and CFG/INSTRIM you can also specify CTX and/or
+      NGRAM, seperate the options with a comma "," then, e.g.:
+        AFL_LLVM_INSTRUMENT=CFG,CTX,NGRAM-4
+      Not that this is a good idea to use both CTX and NGRAM :)
 
 ### LTO
 
diff --git a/examples/afl_network_proxy/GNUmakefile b/examples/afl_network_proxy/GNUmakefile
index 99221d10..eafc5249 100644
--- a/examples/afl_network_proxy/GNUmakefile
+++ b/examples/afl_network_proxy/GNUmakefile
@@ -12,7 +12,7 @@ endif
 
 ifeq "$(shell echo '$(HASH)include <libdeflate.h>@int main() { struct libdeflate_compressor *d = libdeflate_alloc_compressor(1); return 0;}' | tr @ '\n' | $(CC) $(CFLAGS) -x c - -o .test2 -ldeflate 2>/dev/null && echo 1 || echo 0 ; rm -f .test2 )" "1"
  CFLAGS += -ldeflate -DUSE_DEFLATE=1
- $(info libdeflate-dev was detected, using compressing)
+ $(info libdeflate-dev was detected, using compression)
 else
  $(warn did not find libdeflate-dev, cannot use compression)
 endif