aboutsummaryrefslogtreecommitdiffstats
path: root/packet-vines.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-06 02:51:13 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-06 02:51:13 +0000
commitc5632f3648fefbe160bf557e1b6b3865a2cbac6b (patch)
tree708716ecefc255317e639d0dc286cd1a6d4ffb7c /packet-vines.c
parent2df47a9f99a3bcb9136face9e8b39f4bf4b2254a (diff)
Make a variable to which a 16-bit value is assigned big enough to hold
such a value. svn path=/trunk/; revision=9572
Diffstat (limited to 'packet-vines.c')
-rw-r--r--packet-vines.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-vines.c b/packet-vines.c
index 4562990082..b085e30fab 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.62 2004/01/05 19:31:44 ulfl Exp $
+ * $Id: packet-vines.c,v 1.63 2004/01/06 02:51:13 guy Exp $
*
* Don Lafontaine <lafont02@cn.ca>
*
@@ -869,7 +869,7 @@ dissect_vines_arp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree *vines_arp_tree = NULL;
proto_item *ti;
guint8 version;
- guint8 packet_type;
+ guint16 packet_type;
guint16 metric;
if (check_col(pinfo->cinfo, COL_PROTOCOL))