summaryrefslogtreecommitdiff
path: root/epan/ftypes/ftype-bytes.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-12-18 01:25:46 +0000
committerGerald Combs <gerald@wireshark.org>2009-12-18 01:25:46 +0000
commitb33e11a0e9c5e6439baaad51f3c94f91064adafc (patch)
treeca68cec5cbaba8bbd9e88f98e20d2f222ab3c68a /epan/ftypes/ftype-bytes.c
parent7c0dc5d7e7a479d497f0e991158a60ae89a35f74 (diff)
downloadwireshark-b33e11a0e9c5e6439baaad51f3c94f91064adafc.tar.gz
Fix our match flags.
svn path=/trunk/; revision=31303
Diffstat (limited to 'epan/ftypes/ftype-bytes.c')
-rw-r--r--epan/ftypes/ftype-bytes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/ftypes/ftype-bytes.c b/epan/ftypes/ftype-bytes.c
index d6a26dfef7..953c693c35 100644
--- a/epan/ftypes/ftype-bytes.c
+++ b/epan/ftypes/ftype-bytes.c
@@ -527,8 +527,8 @@ cmp_matches(fvalue_t *fv_a, fvalue_t *fv_b)
regex, /* Compiled PCRE */
a->data, /* The data to check for the pattern... */
(int)a->len, /* ... and its length */
- 0, /* Start offset within data */
- G_REGEX_RAW, /* GRegexMatchFlags */
+ 0, /* Start offset within data */
+ 0, /* GRegexMatchFlags */
NULL, /* We are not interested in the match information */
NULL /* We don't want error information */
);