aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-bytes.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/ftypes/ftype-bytes.c')
-rw-r--r--epan/ftypes/ftype-bytes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/ftypes/ftype-bytes.c b/epan/ftypes/ftype-bytes.c
index 50d8d26131..3d3e27852c 100644
--- a/epan/ftypes/ftype-bytes.c
+++ b/epan/ftypes/ftype-bytes.c
@@ -545,7 +545,7 @@ cmp_contains(const fvalue_t *fv_a, const fvalue_t *fv_b)
GByteArray *a = fv_a->value.bytes;
GByteArray *b = fv_b->value.bytes;
- if (epan_memmem(a->data, a->len, b->data, b->len)) {
+ if (ws_memmem(a->data, a->len, b->data, b->len)) {
return TRUE;
}
else {