aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtse.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-rtse.c')
-rw-r--r--epan/dissectors/packet-rtse.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/epan/dissectors/packet-rtse.c b/epan/dissectors/packet-rtse.c
index a9f5051cb3..cb01c6068a 100644
--- a/epan/dissectors/packet-rtse.c
+++ b/epan/dissectors/packet-rtse.c
@@ -118,7 +118,6 @@ static expert_field ei_rtse_abstract_syntax = EI_INIT;
static dissector_table_t rtse_oid_dissector_table=NULL;
static dissector_handle_t rtse_handle = NULL;
-static GHashTable *oid_table=NULL;
static gint ett_rtse_unknown = -1;
static reassembly_table rtse_reassembly_table;
@@ -171,9 +170,6 @@ register_rtse_oid_dissector_handle(const char *oid, dissector_handle_t dissector
if (ros_handle == NULL)
ros_handle = find_dissector("ros");
- /* save the name - but not used */
- g_hash_table_insert(oid_table, (gpointer)oid, (gpointer)name);
-
/* register RTSE with the BER (ACSE) */
register_ber_oid_dissector_handle(oid, rtse_handle, proto, name);
@@ -736,7 +732,7 @@ dissect_rtse_RTSE_apdus(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset
/*--- End of included file: packet-rtse-fn.c ---*/
-#line 192 "./asn1/rtse/packet-rtse-template.c"
+#line 188 "./asn1/rtse/packet-rtse-template.c"
/*
* Dissect RTSE PDUs inside a PPDU.
@@ -998,7 +994,7 @@ void proto_register_rtse(void) {
NULL, HFILL }},
/*--- End of included file: packet-rtse-hfarr.c ---*/
-#line 353 "./asn1/rtse/packet-rtse-template.c"
+#line 349 "./asn1/rtse/packet-rtse-template.c"
};
/* List of subtrees */
@@ -1020,7 +1016,7 @@ void proto_register_rtse(void) {
&ett_rtse_CallingSSuserReference,
/*--- End of included file: packet-rtse-ettarr.c ---*/
-#line 362 "./asn1/rtse/packet-rtse-template.c"
+#line 358 "./asn1/rtse/packet-rtse-template.c"
};
static ei_register_info ei[] = {
@@ -1054,9 +1050,6 @@ void proto_register_rtse(void) {
" in the TCP protocol settings.", &rtse_reassemble);
rtse_oid_dissector_table = register_dissector_table("rtse.oid", "RTSE OID Dissectors", proto_rtse, FT_STRING, BASE_NONE);
- oid_table=g_hash_table_new(g_str_hash, g_str_equal);
-
-
}