aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-winsrepl.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-07-30 23:47:36 +0000
committerGerald Combs <gerald@wireshark.org>2009-07-30 23:47:36 +0000
commit9a35ed601d03b23efa2d54f6a02de98c18ef3f39 (patch)
tree858ea262eaf83823af893f9b1045930797181c8d /epan/dissectors/packet-winsrepl.c
parentdb0698fd0acc7e5309207f4604edf2e4508c99a9 (diff)
Remove more unused variables.
svn path=/trunk/; revision=29249
Diffstat (limited to 'epan/dissectors/packet-winsrepl.c')
-rw-r--r--epan/dissectors/packet-winsrepl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-winsrepl.c b/epan/dissectors/packet-winsrepl.c
index 1f8ba0c47b..66625b9d90 100644
--- a/epan/dissectors/packet-winsrepl.c
+++ b/epan/dissectors/packet-winsrepl.c
@@ -692,7 +692,7 @@ dissect_winsrepl_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
col_set_str(pinfo->cinfo, COL_INFO, "WREPL_START_ASSOCIATION");
}
proto_item_append_text(winsrepl_item, ", WREPL_START_ASSOCIATION");
- offset = dissect_winsrepl_start(tvb, pinfo,
+ dissect_winsrepl_start(tvb, pinfo,
offset, winsrepl_tree);
break;
case WREPL_START_ASSOCIATION_REPLY:
@@ -700,7 +700,7 @@ dissect_winsrepl_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
col_set_str(pinfo->cinfo, COL_INFO, "WREPL_START_ASSOCIATION_REPLY");
}
proto_item_append_text(winsrepl_item, ", WREPL_START_ASSOCIATION_REPLY");
- offset = dissect_winsrepl_start(tvb, pinfo,
+ dissect_winsrepl_start(tvb, pinfo,
offset, winsrepl_tree);
break;
case WREPL_STOP_ASSOCIATION:
@@ -708,11 +708,11 @@ dissect_winsrepl_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
col_set_str(pinfo->cinfo, COL_INFO, "WREPL_STOP_ASSOCIATION");
}
proto_item_append_text(winsrepl_item, ", WREPL_STOP_ASSOCIATION");
- offset = dissect_winsrepl_stop(tvb, pinfo,
+ dissect_winsrepl_stop(tvb, pinfo,
offset, winsrepl_tree);
break;
case WREPL_REPLICATION:
- offset = dissect_winsrepl_replication(tvb, pinfo,
+ dissect_winsrepl_replication(tvb, pinfo,
offset, winsrepl_item, winsrepl_tree);
break;
}