aboutsummaryrefslogtreecommitdiffstats
path: root/packet-snaeth.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-17 00:51:21 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-17 00:51:21 +0000
commit9a4e4616534196c2034337ef2a0c2e93d583d2f1 (patch)
tree6c3672ed6745221c5a874b342129457a1135f49d /packet-snaeth.c
parent1c4fcf567c622e27e0ea19761e131a8092de23a9 (diff)
With the tvbuffication of all dissectors, the "packet_info" structure no
longer contains length fields, so there's no need to pass a "packet_info *" argument to "set_actual_length()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4748 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-snaeth.c')
-rw-r--r--packet-snaeth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-snaeth.c b/packet-snaeth.c
index 61a6b45bd3..9a0c2786bf 100644
--- a/packet-snaeth.c
+++ b/packet-snaeth.c
@@ -1,7 +1,7 @@
/* packet-snaeth.c
* Routines for SNA-over-Ethernet (Ethernet type 80d5)
*
- * $Id: packet-snaeth.c,v 1.1 2002/02/17 00:16:19 guy Exp $
+ * $Id: packet-snaeth.c,v 1.2 2002/02/17 00:51:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -75,7 +75,7 @@ dissect_snaeth(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* Adjust the length of this tvbuff to include only the SNA-over-
* Ethernet header and data.
*/
- set_actual_length(tvb, pinfo, 3 + len);
+ set_actual_length(tvb, 3 + len);
/*
* Rest of packet starts with an 802.2 LLC header.