From 48e75dda62f6e52b19508729199b2c69c5d522de Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 3 Sep 2003 05:28:16 +0000 Subject: Fix the bit mask for the parity level 1 information. svn path=/trunk/; revision=8349 --- packet-q931.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packet-q931.c') diff --git a/packet-q931.c b/packet-q931.c index f9c02a52f6..457f3043e3 100644 --- a/packet-q931.c +++ b/packet-q931.c @@ -2,7 +2,7 @@ * Routines for Q.931 frame disassembly * Guy Harris * - * $Id: packet-q931.c,v 1.58 2003/08/05 17:45:52 guy Exp $ + * $Id: packet-q931.c,v 1.59 2003/09/03 05:28:16 guy Exp $ * * Modified by Andreas Sikkema for possible use with H.323 * @@ -785,7 +785,7 @@ dissect_q931_bearer_capability_ie(tvbuff_t *tvb, int offset, int len, "Unknown (0x%X)")); proto_tree_add_text(tree, tvb, offset, 1, "Parity: %s", - val_to_str(octet & 0x08, q931_l1_parity_vals, + val_to_str(octet & 0x07, q931_l1_parity_vals, "Unknown (0x%X)")); if (octet & Q931_IE_VL_EXTENSION) -- cgit v1.2.3