aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fcsp.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-10-22 16:13:32 +0000
committerBill Meier <wmeier@newsguy.com>2013-10-22 16:13:32 +0000
commita3a15ff90b3aca7f94e853ddcaeb1f373368a29c (patch)
treecbe3ba7f680eaa1e8e0cc0f1ba73a20eeeb1e33c /epan/dissectors/packet-fcsp.c
parent5b9ec08eaea79d10311bbea8026d491719d6f27c (diff)
Remove instances of unused 'data_handle' (and of one other handle).
svn path=/trunk/; revision=52767
Diffstat (limited to 'epan/dissectors/packet-fcsp.c')
-rw-r--r--epan/dissectors/packet-fcsp.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/epan/dissectors/packet-fcsp.c b/epan/dissectors/packet-fcsp.c
index 20bdf064de..8b9015d102 100644
--- a/epan/dissectors/packet-fcsp.c
+++ b/epan/dissectors/packet-fcsp.c
@@ -95,8 +95,6 @@ static int hf_auth_dhchap_rsp_value = -1;
/* Initialize the subtree pointers */
static gint ett_fcsp = -1;
-static dissector_handle_t data_handle;
-
static const value_string fcauth_msgcode_vals[] = {
{FC_AUTH_MSG_AUTH_REJECT, "AUTH_Reject"},
{FC_AUTH_MSG_AUTH_NEGOTIATE, "AUTH_Negotiate"},
@@ -613,9 +611,3 @@ proto_register_fcsp(void)
proto_register_subtree_array(ett, array_length(ett));
}
-void
-proto_reg_handoff_fcsp(void)
-{
- data_handle = find_dissector("data");
-}
-