diff options
author | van Hauser <vh@thc.org> | 2023-10-23 09:14:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-23 09:14:18 +0200 |
commit | 85c5b5218c6a7b2289f309fbd1625a5d0a602a00 (patch) | |
tree | 148f0c2c459c972f56a7a8f5bef3d5205aaf6d83 /src/afl-fuzz-statsd.c | |
parent | d09950f4bb98431576b872436f0fbf773ab895db (diff) | |
parent | eaa6a1754a2efa54903959a5b3ce3d433dcdea37 (diff) | |
download | afl++-85c5b5218c6a7b2289f309fbd1625a5d0a602a00.tar.gz |
Merge pull request #1896 from AFLplusplus/dev
push to stable
Diffstat (limited to 'src/afl-fuzz-statsd.c')
-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); } |