aboutsummaryrefslogtreecommitdiffstats
path: root/packet-lapd.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-07 01:08:27 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-07 01:08:27 +0000
commitabb38c5ed0d32162f7f2555238b672237f099e73 (patch)
tree4c3774922f1d3184b5b576240933338520a3c92a /packet-lapd.c
parenta83be44e565742502d7fdd85d93be3e87200b091 (diff)
Note that we should handle LAPD traffic other than Q.931 traffic.
svn path=/trunk/; revision=6864
Diffstat (limited to 'packet-lapd.c')
-rw-r--r--packet-lapd.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/packet-lapd.c b/packet-lapd.c
index 16914bc232..12a8676cd9 100644
--- a/packet-lapd.c
+++ b/packet-lapd.c
@@ -2,7 +2,7 @@
* Routines for LAPD frame disassembly
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: packet-lapd.c,v 1.33 2002/10/31 07:43:10 guy Exp $
+ * $Id: packet-lapd.c,v 1.34 2003/01/07 01:08:27 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -153,7 +153,11 @@ dissect_lapd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
break;
default:
- call_dissector(data_handle,next_tvb, pinfo, tree);
+ /*
+ * XXX - handle some of the others, such as
+ * LAPD_SAPI_L2.
+ */
+ call_dissector(data_handle, next_tvb, pinfo, tree);
break;
}
} else