aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-18 01:25:46 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-18 01:25:46 +0000
commit700b841b8eecc91f1a202dbd0da7915867db8792 (patch)
treeca68cec5cbaba8bbd9e88f98e20d2f222ab3c68a /epan
parent1272919d62a211d39ac8d792b6284e7d905fd259 (diff)
Fix our match flags.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31303 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-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 */
);