From: Florian Forster Date: Wed, 2 Nov 2016 08:04:00 +0000 (+0100) Subject: src/daemon/utils_tail_match.c: Use match_value_reset(). X-Git-Tag: collectd-5.7.0~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2015%2Fhead;p=thirdparty%2Fcollectd.git src/daemon/utils_tail_match.c: Use match_value_reset(). --- diff --git a/src/daemon/utils_tail_match.c b/src/daemon/utils_tail_match.c index 377336f6f..99d5decbe 100644 --- a/src/daemon/utils_tail_match.c +++ b/src/daemon/utils_tail_match.c @@ -98,12 +98,7 @@ static int simple_submit_match (cu_match_t *match, void *user_data) vl.interval = data->interval; plugin_dispatch_values (&vl); - if (match_value->ds_type & UTILS_MATCH_DS_TYPE_GAUGE) - { - match_value->value.gauge = NAN; - match_value->values_num = 0; - } - + match_value_reset (match_value); return (0); } /* int simple_submit_match */