aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-tvbuff.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2004-02-22 03:04:41 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2004-02-22 03:04:41 +0000
commit5cfc41fd885e35bcf18f5fdb261ebd079f60cbca (patch)
treeec280b06c0e4a2b911c743ed43cbfbd69d91b790 /epan/ftypes/ftype-tvbuff.c
parente6f75392c3de89b1446a5f1674991a3961948f98 (diff)
If the LHS is a STRING or UNPARSED string, and the RHS is a FIELD,
then make sure that the FIELD can participate in the relation that is expressed in the display filter. Note that tvbuff's *should* be able to participate in == comparisons, etc., but those functions need to be added to ftype-tvbuff.c first. svn path=/trunk/; revision=10175
Diffstat (limited to 'epan/ftypes/ftype-tvbuff.c')
-rw-r--r--epan/ftypes/ftype-tvbuff.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/ftypes/ftype-tvbuff.c b/epan/ftypes/ftype-tvbuff.c
index 17c51d759a..e7020ff6d0 100644
--- a/epan/ftypes/ftype-tvbuff.c
+++ b/epan/ftypes/ftype-tvbuff.c
@@ -1,5 +1,5 @@
/*
- * $Id: ftype-tvbuff.c,v 1.16 2004/02/01 22:42:24 guy Exp $
+ * $Id: ftype-tvbuff.c,v 1.17 2004/02/22 03:04:41 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -242,6 +242,9 @@ ftype_register_tvbuff(void)
NULL,
NULL,
+
+ /* TODO - tvb's *can* do 'eq', etc. */
+
NULL, /* cmp_eq */
NULL, /* cmp_ne */
NULL, /* cmp_gt */