aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sdh.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-sdh.c')
-rw-r--r--epan/dissectors/packet-sdh.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/epan/dissectors/packet-sdh.c b/epan/dissectors/packet-sdh.c
index 5604c5182b..0c35c243cc 100644
--- a/epan/dissectors/packet-sdh.c
+++ b/epan/dissectors/packet-sdh.c
@@ -68,6 +68,8 @@ static int hf_sdh_h1 = -1;
static int hf_sdh_h2 = -1;
static int hf_sdh_j1 = -1;
+static dissector_handle_t sdh_handle;
+
static gint sdh_data_rate = 1;
static const enum_val_t data_rates[] = {
@@ -277,15 +279,12 @@ proto_register_sdh(void)
"Data rate",
&sdh_data_rate, data_rates, ENC_BIG_ENDIAN);
- register_dissector("sdh", dissect_sdh, proto_sdh);
+ sdh_handle = register_dissector("sdh", dissect_sdh, proto_sdh);
}
void
proto_reg_handoff_sdh(void)
{
- dissector_handle_t sdh_handle;
-
- sdh_handle = find_dissector("sdh");
dissector_add_uint("wtap_encap", WTAP_ENCAP_SDH, sdh_handle);
}