aboutsummaryrefslogtreecommitdiffstats
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
parent7c0dc5d7e7a479d497f0e991158a60ae89a35f74 (diff)
Fix our match flags.
svn path=/trunk/; revision=31303
-rw-r--r--epan/ftypes/ftype-bytes.c4
-rw-r--r--epan/ftypes/ftype-tvbuff.c2
2 files changed, 3 insertions, 3 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 */
);
diff --git a/epan/ftypes/ftype-tvbuff.c b/epan/ftypes/ftype-tvbuff.c
index dc0f6186b4..4d18388274 100644
--- a/epan/ftypes/ftype-tvbuff.c
+++ b/epan/ftypes/ftype-tvbuff.c
@@ -386,7 +386,7 @@ cmp_matches(fvalue_t *fv_a, fvalue_t *fv_b)
data, /* The data to check for the pattern... */
tvb_len, /* ... and its length */
0, /* Start offset within data */
- G_REGEX_RAW, /* GRegexMatchFlags */
+ 0, /* GRegexMatchFlags */
NULL, /* We are not interested in the match information */
NULL /* We don't want error information */
);