summaryrefslogtreecommitdiff
path: root/epan/oids.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2016-11-19 18:13:47 +0100
committerMichael Mann <mmann78@netscape.net>2016-11-22 16:47:11 +0000
commitba67963fd4ef287124cd9bf8f35a22d8a5663a11 (patch)
tree00830dd6f67ede476f803bc6eec45c49de724ea5 /epan/oids.c
parent03a2539b227ee2adc547b6c755cc1d17235a09b9 (diff)
downloadwireshark-ba67963fd4ef287124cd9bf8f35a22d8a5663a11.tar.gz
Improve name resolution preference tooltips.
Change the tooltips texts to make them better describe the preference. Bug: 13130 Bug: 13131 Change-Id: Ie753e3703a702bdafed91cf0f41b306347088526 Reviewed-on: https://code.wireshark.org/review/18878 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/oids.c')
-rw-r--r--epan/oids.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/epan/oids.c b/epan/oids.c
index a9b69c41e4..23887ddb5a 100644
--- a/epan/oids.c
+++ b/epan/oids.c
@@ -761,12 +761,16 @@ void oid_pref_init(module_t *nameres)
prefs_register_bool_preference(nameres, "load_smi_modules",
"Enable OID resolution",
- "You must restart Wireshark for this change to take effect",
+ "Resolve Object IDs to object names from the MIB and PIB"
+ " modules defined below."
+ " You must restart Wireshark for this change to take effect",
&load_smi_modules);
prefs_register_bool_preference(nameres, "suppress_smi_errors",
"Suppress SMI errors",
- "Some errors can be ignored. If unsure, set to false.",
+ "While loading MIB or PIB modules errors may be detected,"
+ " which are reported. Some errors can be ignored."
+ " If unsure, set to false.",
&suppress_smi_errors);
smi_paths_uat = uat_new("SMI Paths",
@@ -793,8 +797,8 @@ void oid_pref_init(module_t *nameres)
prefs_register_uat_preference(nameres,
"smi_paths",
"SMI (MIB and PIB) paths",
- "Search paths for SMI (MIB and PIB) modules. You must\n"
- "restart Wireshark for these changes to take effect.",
+ "Search paths for SMI (MIB and PIB) modules. You must"
+ " restart Wireshark for these changes to take effect.",
smi_paths_uat);
smi_modules_uat = uat_new("SMI Modules",
@@ -821,8 +825,8 @@ void oid_pref_init(module_t *nameres)
prefs_register_uat_preference(nameres,
"smi_modules",
"SMI (MIB and PIB) modules",
- "List of enabled SMI (MIB and PIB) modules. You must\n"
- "restart Wireshark for these changes to take effect.",
+ "List of SMI (MIB and PIB) modules to load. You must"
+ " restart Wireshark for these changes to take effect.",
smi_modules_uat);
#else