summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2017-06-02 06:29:02 +0200
committerRoland Knall <rknall@gmail.com>2017-06-02 10:28:24 +0000
commit3eaa62dee694166d3bf5ae13c0eee4b9e1ec5784 (patch)
tree6e8c7ac9be5bd74646ed0403bb069b8feeab6e07
parent974f985bd9716cf8d0144099bd7c052f866c1a2b (diff)
downloadwireshark-3eaa62dee694166d3bf5ae13c0eee4b9e1ec5784.tar.gz
packet-epl.c: Prefix EPL UAT files with epl_
Unlike preferences, UATs are stored in their own files, so prefexing file name with the protocol abbreviation makes sense to keep matters organized. Change-Id: Ic7918f509e38da38cdb86ad70917923547f9c112 Reviewed-on: https://code.wireshark.org/review/21888 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Roland Knall <rknall@gmail.com>
-rw-r--r--epan/dissectors/packet-epl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-epl.c b/epan/dissectors/packet-epl.c
index 589ea7d71c..d93fabdb3c 100644
--- a/epan/dissectors/packet-epl.c
+++ b/epan/dissectors/packet-epl.c
@@ -6200,7 +6200,7 @@ proto_register_epl(void)
device_profile_uat = uat_new("Device-Specific Profiles",
sizeof (struct device_profile_uat_assoc),
- "device_profiles", /* filename */
+ "epl_device_profiles", /* filename */
TRUE, /* from_profile */
&device_profile_list_uats, /* data_ptr */
&ndevice_profile_uat, /* numitems_ptr */
@@ -6222,7 +6222,7 @@ proto_register_epl(void)
nodeid_profile_uat = uat_new("NodeID-Specific Profiles",
sizeof (struct nodeid_profile_uat_assoc),
- "nodeid_profiles", /* filename */
+ "epl_nodeid_profiles", /* filename */
TRUE, /* from_profile */
&nodeid_profile_list_uats, /* data_ptr */
&nnodeid_profile_uat, /* numitems_ptr */