aboutsummaryrefslogtreecommitdiffstats
path: root/packet-vines.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-11-20 21:59:18 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-11-20 21:59:18 +0000
commit93bdfea13eb69582c481bcbb5c59cf90f3004144 (patch)
treeae3c72a5204d6498a7f2957738be88615f89a115 /packet-vines.c
parent960baf0e34e0de2c339e051afe1e411bd4595f89 (diff)
Make the capture routines take an additional argument giving the amount
of packet data captured. Make the "BYTES_ARE_IN_FRAME()" macro take a "captured length of the packet" argument. Add some length checks to capture routines. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4235 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-vines.c')
-rw-r--r--packet-vines.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/packet-vines.c b/packet-vines.c
index 8ab47fc37a..8680107718 100644
--- a/packet-vines.c
+++ b/packet-vines.c
@@ -1,7 +1,7 @@
/* packet-vines.c
* Routines for Banyan VINES protocol packet disassembly
*
- * $Id: packet-vines.c,v 1.33 2001/06/18 02:17:53 guy Exp $
+ * $Id: packet-vines.c,v 1.34 2001/11/20 21:59:13 guy Exp $
*
* Don Lafontaine <lafont02@cn.ca>
*
@@ -9,7 +9,6 @@
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
* Joerg Mayer <jmayer@loplof.de>
- *
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -72,7 +71,7 @@ static void dissect_vines_spp(tvbuff_t *, packet_info *, proto_tree *);
static void dissect_vines(tvbuff_t *, packet_info *, proto_tree *);
void
-capture_vines(const u_char *pd, int offset, packet_counts *ld)
+capture_vines(const u_char *pd, int offset, int len, packet_counts *ld)
{
ld->vines++;
}