diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-01-18 07:44:41 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-01-18 07:44:41 +0000 |
commit | 18bfc670eccbc7b9acacd7121e415b3d335b7ff9 (patch) | |
tree | 479f963eaed0ad216b7059a8ce374cb81805e8b8 /packet-llc.c | |
parent | f655d094b544e0c2dc4cf20b46de5d178b4ccc4d (diff) | |
download | wireshark-18bfc670eccbc7b9acacd7121e415b3d335b7ff9.tar.gz wireshark-18bfc670eccbc7b9acacd7121e415b3d335b7ff9.tar.bz2 wireshark-18bfc670eccbc7b9acacd7121e415b3d335b7ff9.zip |
Pull the handling of trailers in Ethernet (as opposed to 802.3) frames
into "ethertype()".
svn path=/trunk/; revision=2915
Diffstat (limited to 'packet-llc.c')
-rw-r--r-- | packet-llc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-llc.c b/packet-llc.c index f6b6a5cbf0..c517b19f74 100644 --- a/packet-llc.c +++ b/packet-llc.c @@ -2,7 +2,7 @@ * Routines for IEEE 802.2 LLC layer * Gilbert Ramirez <gram@xiexie.org> * - * $Id: packet-llc.c,v 1.80 2001/01/11 07:24:17 guy Exp $ + * $Id: packet-llc.c,v 1.81 2001/01/18 07:44:39 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -398,7 +398,7 @@ dissect_snap(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, packet type for AARP packets. */ if (XDLC_IS_INFORMATION(control)) { ethertype(etype, tvb, offset+5, - pinfo, tree, snap_tree, hf_type); + pinfo, tree, snap_tree, hf_type, -1); } else { next_tvb = tvb_new_subset(tvb, offset+5, -1, -1); dissect_data(next_tvb, 0, pinfo, tree); |