diff options
author | Bill Meier <wmeier@newsguy.com> | 2008-09-25 02:21:04 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2008-09-25 02:21:04 +0000 |
commit | 432f7be1e0a25fe24622d24066839f6c89499931 (patch) | |
tree | 40130a7b7cbd7468aca29dc99e4b78958971cc52 /epan/dissectors/packet-fcsp.c | |
parent | 33ad445703a44fb761bd46b3c760fa15ff99772f (diff) | |
download | wireshark-432f7be1e0a25fe24622d24066839f6c89499931.tar.gz wireshark-432f7be1e0a25fe24622d24066839f6c89499931.tar.bz2 wireshark-432f7be1e0a25fe24622d24066839f6c89499931.zip |
Minor proto_reg_handoff cleanup
svn path=/trunk/; revision=26265
Diffstat (limited to 'epan/dissectors/packet-fcsp.c')
-rw-r--r-- | epan/dissectors/packet-fcsp.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/dissectors/packet-fcsp.c b/epan/dissectors/packet-fcsp.c index f335be3fb0..e2edcabf1c 100644 --- a/epan/dissectors/packet-fcsp.c +++ b/epan/dissectors/packet-fcsp.c @@ -574,8 +574,6 @@ proto_register_fcsp (void) /* Required function calls to register the header fields and subtrees used */ proto_register_field_array(proto_fcsp, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); - - data_handle = find_dissector("data"); } /* If this dissector uses sub-dissector registration add a registration routine. @@ -585,10 +583,6 @@ proto_register_fcsp (void) void proto_reg_handoff_fcsp (void) { - dissector_handle_t fcsp_handle; - - fcsp_handle = create_dissector_handle (dissect_fcsp, proto_fcsp); - data_handle = find_dissector ("data"); } |