aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-string.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/ftypes/ftype-string.c')
-rw-r--r--epan/ftypes/ftype-string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/ftypes/ftype-string.c b/epan/ftypes/ftype-string.c
index 97316eb660..0afe5fdd8a 100644
--- a/epan/ftypes/ftype-string.c
+++ b/epan/ftypes/ftype-string.c
@@ -124,14 +124,14 @@ cmp_contains(const fvalue_t *fv_a, const fvalue_t *fv_b)
}
static gboolean
-cmp_matches(const fvalue_t *fv, const fvalue_regex_t *regex)
+cmp_matches(const fvalue_t *fv, const ws_regex_t *regex)
{
char *str = fv->value.string;
if (! regex) {
return FALSE;
}
- return fvalue_regex_matches(regex, str, -1);
+ return ws_regex_matches(regex, str, -1);
}
void