aboutsummaryrefslogtreecommitdiffstats
path: root/packet-q931.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-03 05:28:16 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-03 05:28:16 +0000
commitdad77e2f14514ca394e0fb2cf27410e935c8b364 (patch)
treec18e447caa600775137477746ed5cbcbdbdfa553 /packet-q931.c
parent1b718aef0496e7c312d82f4e366a1eea0a01d4dc (diff)
Fix the bit mask for the parity level 1 information.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8349 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-q931.c')
-rw-r--r--packet-q931.c4
1 files changed, 2 insertions, 2 deletions
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 <guy@alum.mit.edu>
*
- * $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)