From 7d2c0c1b6146887d9dad888e090f381a4ebcb483 Mon Sep 17 00:00:00 2001 From: Jaap Keuter Date: Wed, 17 Oct 2007 18:25:49 +0000 Subject: Logic error svn path=/trunk/; revision=23220 --- epan/dissectors/packet-bootp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-bootp.c') diff --git a/epan/dissectors/packet-bootp.c b/epan/dissectors/packet-bootp.c index 73ba893c51..a90aa02560 100644 --- a/epan/dissectors/packet-bootp.c +++ b/epan/dissectors/packet-bootp.c @@ -2710,7 +2710,7 @@ dissect_docsis_cm_cap(proto_tree *v_tree, tvbuff_t *tvb, int voff, int len) proto_item_append_text(ti, "802.1Q filtering"); } - if (! raw_val & 0x03) + if (!(raw_val & 0x03)) proto_item_append_text(ti, "None"); proto_item_append_text(ti, -- cgit v1.2.3