aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-distcc.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-09-20 14:11:29 -0700
committerMichael Mann <mmann78@netscape.net>2016-12-01 01:26:39 +0000
commitcbf89c8ed842a58c282872cf8c42adf9b8b2ffee (patch)
tree3a0c338486818e511d8b9f27b0d16b3b213bcf9d /epan/dissectors/packet-distcc.c
parent9887cd7feb7c377a3d046b924fe86907479be413 (diff)
Check preference titles and descriptions.
When registering preferences, make sure our titles and descriptions are valid UTF-8. Make sure our titles are short and only contain printable characters. Fix problematic titles and descriptions. Change-Id: I20d3f93438f2b3c30266f934297feb79897f2ee5 Reviewed-on: https://code.wireshark.org/review/18998 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-distcc.c')
-rw-r--r--epan/dissectors/packet-distcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-distcc.c b/epan/dissectors/packet-distcc.c
index 44a1ca936b..7903ae5806 100644
--- a/epan/dissectors/packet-distcc.c
+++ b/epan/dissectors/packet-distcc.c
@@ -367,7 +367,7 @@ proto_register_distcc(void)
distcc_module = prefs_register_protocol(proto_distcc, NULL);
prefs_register_bool_preference(distcc_module, "desegment_distcc_over_tcp",
- "Reassemble DISTCC-over-TCP messages\nspanning multiple TCP segments",
+ "Reassemble DISTCC-over-TCP messages spanning multiple TCP segments",
"Whether the DISTCC dissector should reassemble messages spanning multiple TCP segments."
" To use this option, you must also enable \"Allow subdissectors to reassemble TCP streams\" in the TCP protocol settings.",
&distcc_desegment);