diff options
author | van Hauser <vh@thc.org> | 2023-10-03 14:02:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 14:02:34 +0200 |
commit | 17bfb3a4084dd3e24d8521cedc6a50ecba43cd6f (patch) | |
tree | beb2088f58d95622c40589419c220133cba22b82 /src | |
parent | d97c7e42584e2c1e094a7c57fa469bf3b5b46b21 (diff) | |
parent | 8eaa590c59e3694e1fdad0aca7bf3f809f8df727 (diff) | |
download | afl++-17bfb3a4084dd3e24d8521cedc6a50ecba43cd6f.tar.gz |
Merge pull request #1882 from m4drat/statsd-banner-fix
Use sync_id instead of use_banner while building statsd metric messages
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-statsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-statsd.c b/src/afl-fuzz-statsd.c index e835c8ea..2e42ea9b 100644 --- a/src/afl-fuzz-statsd.c +++ b/src/afl-fuzz-statsd.c @@ -223,7 +223,7 @@ int statsd_format_metric(afl_state_t *afl, char *buff, size_t bufflen) { char tags[MAX_TAG_LEN * 2] = {0}; if (afl->statsd_tags_format) { - snprintf(tags, MAX_TAG_LEN * 2, afl->statsd_tags_format, afl->use_banner, + snprintf(tags, MAX_TAG_LEN * 2, afl->statsd_tags_format, afl->sync_id, VERSION); } |