about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-10-10 10:41:30 +0200
committervan Hauser <vh@thc.org>2020-10-10 10:41:30 +0200
commit5dc3bc175b664f0921ebd1265d4419d611aa4a74 (patch)
treebf33522d52e2d349508337eb65a6cbcb64a68a12
parentc075003bd24f476347c665c49a5fb438ba055668 (diff)
downloadafl++-5dc3bc175b664f0921ebd1265d4419d611aa4a74.tar.gz
fix typo
-rw-r--r--docs/Changelog.md1
-rw-r--r--src/afl-fuzz-stats.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md
index ba7028df..aa55fbde 100644
--- a/docs/Changelog.md
+++ b/docs/Changelog.md
@@ -15,6 +15,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
   - afl-llvm/gcc-rt.o merged into afl-compiler-rt.o
   - afl-fuzz
     - memory limits are now disabled by default, set them with -m if required
+    - statsd support by Edznux, thanks a lot!
     - Marcel Boehme submitted a patch that improves all AFFast schedules :)
     - reading testcases from -i now descends into subdirectories
     - allow up to 4 -x command line options
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index 0cd6f399..76f24977 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -429,7 +429,7 @@ void show_stats(afl_state_t *afl) {
 
       /* reset counter, even if send failed. */
       afl->statsd_last_send_ms = cur_ms;
-      if (statsd_send_metric(afl)) { WARNF("coundln't send statsd metric."); }
+      if (statsd_send_metric(afl)) { WARNF("could not send statsd metric."); }
 
     }