X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_tail_match.c;h=8ae2208cc1e2138e9c304930e016d039c7dfb480;hb=c4e824e456a30e1dc8f750a425472a0955f6b646;hp=ae1f4f75d3fa30130151689598ab8dadd6ad5120;hpb=b72d521340383b6418fa6a75faca3bc45f06b14a;p=collectd.git diff --git a/src/utils_tail_match.c b/src/utils_tail_match.c index ae1f4f75..8ae2208c 100644 --- a/src/utils_tail_match.c +++ b/src/utils_tail_match.c @@ -103,7 +103,7 @@ static int tail_callback (void *data, char *buf, int __attribute__((unused)) buflen) { cu_tail_match_t *obj = (cu_tail_match_t *) data; - int i; + size_t i; for (i = 0; i < obj->matches_num; i++) match_apply (obj->matches[i].match, buf); @@ -135,7 +135,7 @@ cu_tail_match_t *tail_match_create (const char *filename) void tail_match_destroy (cu_tail_match_t *obj) { - int i; + size_t i; if (obj == NULL) return; @@ -191,7 +191,7 @@ int tail_match_add_match (cu_tail_match_t *obj, cu_match_t *match, } /* int tail_match_add_match */ int tail_match_add_match_simple (cu_tail_match_t *obj, - const char *regex, int ds_type, + const char *regex, const char *excluderegex, int ds_type, const char *plugin, const char *plugin_instance, const char *type, const char *type_instance) { @@ -199,7 +199,7 @@ int tail_match_add_match_simple (cu_tail_match_t *obj, cu_tail_match_simple_t *user_data; int status; - match = match_create_simple (regex, ds_type); + match = match_create_simple (regex, excluderegex, ds_type); if (match == NULL) return (-1); @@ -237,7 +237,7 @@ int tail_match_read (cu_tail_match_t *obj) { char buffer[4096]; int status; - int i; + size_t i; status = cu_tail_read (obj->tail, buffer, sizeof (buffer), tail_callback, (void *) obj);