aboutsummaryrefslogtreecommitdiffstats
path: root/packet-q931.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-03 05:28:16 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-03 05:28:16 +0000
commit48e75dda62f6e52b19508729199b2c69c5d522de (patch)
treec18e447caa600775137477746ed5cbcbdbdfa553 /packet-q931.c
parentb58b71ec66620e888c78ccbaf6f8a48b17ee6bf0 (diff)
Fix the bit mask for the parity level 1 information.
svn path=/trunk/; revision=8349
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)