aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-bytes.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-04-20 22:34:47 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-04-20 22:34:47 +0000
commit6f89fd00d047c6615a614bb5c632a737409a4eee (patch)
tree9d5ae249b929b343befc4969d9712d757b8c2639 /epan/ftypes/ftype-bytes.c
parent131df6c15749c39f4c3058ed99d7c965319ee4c7 (diff)
Corrected ne operator for FT_BYTES.
svn path=/trunk/; revision=25126
Diffstat (limited to 'epan/ftypes/ftype-bytes.c')
-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);