aboutsummaryrefslogtreecommitdiffstats
path: root/packet-q2931.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-05-28 23:25:15 +0000
committerGuy Harris <guy@alum.mit.edu>2002-05-28 23:25:15 +0000
commit363dc049c247b5f69e9d88390106f5e7a8c5d12a (patch)
tree1c4d9799c559dca98d91467c57de6c1c721aab89 /packet-q2931.c
parent49fe4e742caefd4372bde56d1c8905e77cca0482 (diff)
Streaming mode is 0x02, not 0x00.
svn path=/trunk/; revision=5582
Diffstat (limited to 'packet-q2931.c')
-rw-r--r--packet-q2931.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-q2931.c b/packet-q2931.c
index f6fcfecbd8..99bcccdf9a 100644
--- a/packet-q2931.c
+++ b/packet-q2931.c
@@ -2,7 +2,7 @@
* Routines for Q.2931 frame disassembly
* Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-q2931.c,v 1.25 2002/05/24 08:08:43 guy Exp $
+ * $Id: packet-q2931.c,v 1.26 2002/05/28 23:25:15 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -330,8 +330,8 @@ static const value_string q2931_aal1_err_correction_method_vals[] = {
};
static const value_string q2931_aal_mode_vals[] = {
- { 0x00, "Streaming" },
{ 0x01, "Message" },
+ { 0x02, "Streaming" },
{ 0x00, NULL }
};