aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cpha.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-04-27 06:02:16 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-04-27 06:02:16 +0000
commit110e5961bb40f3a35da8c617dc4c50952120de17 (patch)
treea8635c8e17055ffe72d25f5abc75b9e61d6c155d /epan/dissectors/packet-cpha.c
parent9c9585c9ea515cd90fbf1ed54149d1470d8808c9 (diff)
From Yaniv Kaul:
Fix 'set but not used' errors that GCC 4.6 emits. svn path=/trunk/; revision=36895
Diffstat (limited to 'epan/dissectors/packet-cpha.c')
-rw-r--r--epan/dissectors/packet-cpha.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/epan/dissectors/packet-cpha.c b/epan/dissectors/packet-cpha.c
index 474d84dd94..1b99d35e21 100644
--- a/epan/dissectors/packet-cpha.c
+++ b/epan/dissectors/packet-cpha.c
@@ -1,6 +1,6 @@
/* packet-cpha.c
* Routines for the Check Point High-Availability Protocol (CPHAP)
- * Copyright 2002, Yaniv Kaul <ykaul-at-netvision.net.il>
+ * Copyright 2002, Yaniv Kaul <mykaul -at- gmail.com>
*
* $Id$
*
@@ -293,7 +293,7 @@ dissect_cpha(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
static void dissect_my_state(tvbuff_t * tvb, int offset, proto_tree * tree) {
struct fwha_my_state_hdr hdr;
struct fwhap_if_state_s if_hdr;
- int rep_mode, i;
+ int i;
proto_item * nti = NULL;
proto_tree * ntree = NULL;
@@ -315,7 +315,6 @@ static void dissect_my_state(tvbuff_t * tvb, int offset, proto_tree * tree) {
proto_tree_add_uint_format_value(tree, hf_ha_time_unit, tvb, offset, sizeof(hdr.ha_time_unit), hdr.ha_time_unit, "%d milliseconds", hdr.ha_time_unit);
offset += sizeof(hdr.ha_time_unit);
- rep_mode = is_report_ifs(hdr.report_code);
if (hdr.report_code & 1) {
/* states */
nti = proto_tree_add_text(tree, tvb, offset, hdr.id_num * sizeof(guint8), "Machine states");