aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-20 22:34:47 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-20 22:34:47 +0000
commit053e2dd71475ab7115079f8c5ce87ed99ce9f3d9 (patch)
tree9d5ae249b929b343befc4969d9712d757b8c2639 /epan/ftypes
parenteb7f8970d089f73c2b4b1e83f77ca28e7b12f100 (diff)
Corrected ne operator for FT_BYTES.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25126 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/ftypes')
-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 f54cb2acb9..bc074c23a7 100644
--- a/epan/ftypes/ftype-bytes.c
+++ b/epan/ftypes/ftype-bytes.c
@@ -360,7 +360,7 @@ cmp_ne(fvalue_t *fv_a, fvalue_t *fv_b)
GByteArray *b = fv_b->value.bytes;
if (a->len != b->len) {
- return FALSE;
+ return TRUE;
}
return (memcmp(a->data, b->data, a->len) != 0);