aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-osi.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-09-12 20:34:19 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-09-12 20:34:19 +0000
commitac7ecb10d2c2fbd474991f0f22257587cb2b31f1 (patch)
tree1475a95da9a463c1160f9cf27bba735613eb9a07 /epan/dissectors/packet-osi.c
parentaa8fbf09d261e8baa62ad0bf98320d24825e5ba5 (diff)
More dissector table name related changes (a continuation of r51904).
svn path=/trunk/; revision=51982
Diffstat (limited to 'epan/dissectors/packet-osi.c')
-rw-r--r--epan/dissectors/packet-osi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-osi.c b/epan/dissectors/packet-osi.c
index 1e7fa8357b..848334a678 100644
--- a/epan/dissectors/packet-osi.c
+++ b/epan/dissectors/packet-osi.c
@@ -444,7 +444,7 @@ const value_string nlpid_vals[] = {
{ 0, NULL },
};
-static dissector_table_t osinl_subdissector_table;
+static dissector_table_t osinl_incl_subdissector_table;
static dissector_table_t osinl_excl_subdissector_table;
static dissector_handle_t data_handle, ppp_handle;
@@ -465,7 +465,7 @@ static void dissect_osi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
nlpid = tvb_get_guint8(tvb, 0);
/* try lookup with the subdissector tables that includes the nlpid */
- if (dissector_try_uint(osinl_subdissector_table, nlpid, tvb, pinfo, tree))
+ if (dissector_try_uint(osinl_incl_subdissector_table, nlpid, tvb, pinfo, tree))
return;
/* try lookup with the subdissector tables that excludes the nlpid */
new_tvb = tvb_new_subset_remaining(tvb, 1);
@@ -542,8 +542,8 @@ proto_register_osi(void)
all protocols that require inclusion of the NLPID
should register here
*/
- osinl_subdissector_table = register_dissector_table("osinl",
- "OSI incl NLPID", FT_UINT8, BASE_HEX);
+ osinl_incl_subdissector_table = register_dissector_table("osinl.incl",
+ "OSI incl NLPID", FT_UINT8, BASE_HEX);
/* This dissector table is for those protocols whose PDUs
* aren't* defined to begin with an NLPID.