From 6f89fd00d047c6615a614bb5c632a737409a4eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Sun, 20 Apr 2008 22:34:47 +0000 Subject: Corrected ne operator for FT_BYTES. svn path=/trunk/; revision=25126 --- epan/ftypes/ftype-bytes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/ftypes') 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); -- cgit v1.2.1