aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vines.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-09-23 12:45:03 +0000
committerEvan Huus <eapache@gmail.com>2012-09-23 12:45:03 +0000
commita9bb9186dd205013cf5874e0ee841569e4221b3b (patch)
tree06ec016463b31a9cbe61617e51b33774f2229b8e /epan/dissectors/packet-vines.c
parent2fc1cdeb74456f65701481bca2741fe6b07b3339 (diff)
Fix some unused variable warnings from GCC.
svn path=/trunk/; revision=45064
Diffstat (limited to 'epan/dissectors/packet-vines.c')
-rw-r--r--epan/dissectors/packet-vines.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-vines.c b/epan/dissectors/packet-vines.c
index 366b8318f5..19f3365b7f 100644
--- a/epan/dissectors/packet-vines.c
+++ b/epan/dissectors/packet-vines.c
@@ -437,7 +437,6 @@ static void
dissect_vines_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
int offset = 0;
- guint16 vip_chksum;
guint16 vip_pktlen;
guint8 vip_tctl; /* Transport Control */
guint8 vip_proto;
@@ -453,7 +452,6 @@ dissect_vines_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* To do: check for runts, errs, etc. */
/* capture the necessary parts of the header */
- vip_chksum = tvb_get_letohs(tvb, offset);
vip_pktlen = tvb_get_letohs(tvb, offset+2);
vip_tctl = tvb_get_guint8(tvb, offset+3);
vip_proto = tvb_get_guint8(tvb, offset+4);