aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipx.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-17 00:51:21 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-17 00:51:21 +0000
commitd92a1cd8e1f58a1ec46793f9052aa893a279e523 (patch)
tree6c3672ed6745221c5a874b342129457a1135f49d /packet-ipx.c
parentac5a603cb77582b38948307a505e480352b7b75d (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()". svn path=/trunk/; revision=4748
Diffstat (limited to 'packet-ipx.c')
-rw-r--r--packet-ipx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ipx.c b/packet-ipx.c
index 309244652d..f0949bd861 100644
--- a/packet-ipx.c
+++ b/packet-ipx.c
@@ -2,7 +2,7 @@
* Routines for NetWare's IPX
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: packet-ipx.c,v 1.101 2002/01/24 09:20:48 guy Exp $
+ * $Id: packet-ipx.c,v 1.102 2002/02/17 00:51:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -224,7 +224,7 @@ dissect_ipx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
ipx_length = tvb_get_ntohs(tvb, 2);
/* Adjust the tvbuff length to include only the IPX datagram. */
- set_actual_length(tvb, pinfo, ipx_length);
+ set_actual_length(tvb, ipx_length);
src_net_node = tvb_get_ptr(tvb, 18, 10);
dst_net_node = tvb_get_ptr(tvb, 6, 10);