aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-3com-xns.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-09-02 19:08:29 +0000
committerBill Meier <wmeier@newsguy.com>2008-09-02 19:08:29 +0000
commit40bd43db835887c90b4278fecae751c6ae33c9eb (patch)
tree23a8315aa3db2235e9cb026b3cf61a52ee4f0c88 /epan/dissectors/packet-3com-xns.c
parentc63ac0b2e35e2b73a64d1d82f068b4a2297fe09e (diff)
Minor cleanup (mostly related to proto_reg_handoff...)
svn path=/trunk/; revision=26121
Diffstat (limited to 'epan/dissectors/packet-3com-xns.c')
-rw-r--r--epan/dissectors/packet-3com-xns.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/epan/dissectors/packet-3com-xns.c b/epan/dissectors/packet-3com-xns.c
index 75790e5ed4..a9e0392521 100644
--- a/epan/dissectors/packet-3com-xns.c
+++ b/epan/dissectors/packet-3com-xns.c
@@ -88,8 +88,6 @@ dissect_3com_xns(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
}
-void proto_register_3com_xns(void);
-
void
proto_register_3com_xns(void)
{
@@ -113,8 +111,6 @@ proto_register_3com_xns(void)
proto_register_subtree_array(ett, array_length(ett));
}
-void proto_reg_handoff_3com_xns(void);
-
void
proto_reg_handoff_3com_xns(void)
{
@@ -122,7 +118,6 @@ proto_reg_handoff_3com_xns(void)
retix_bpdu_handle = find_dissector("rbpdu");
- our_xns_handle = create_dissector_handle(dissect_3com_xns,
- proto_3com_xns);
+ our_xns_handle = create_dissector_handle(dissect_3com_xns, proto_3com_xns);
dissector_add("llc.dsap", 0x80, our_xns_handle);
}