Use sync_id instead of use_banner while building statsd metric messages

This commit is contained in:
Theodor Arsenij
2023-10-03 13:54:19 +03:00
parent d09950f4bb
commit 8eaa590c59

View File

@ -223,7 +223,7 @@ int statsd_format_metric(afl_state_t *afl, char *buff, size_t bufflen) {
char tags[MAX_TAG_LEN * 2] = {0}; char tags[MAX_TAG_LEN * 2] = {0};
if (afl->statsd_tags_format) { 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); VERSION);
} }