aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-02-07 19:31:54 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-02-07 19:31:54 +0000
commit250a7011441254ebc376da932064760e0e5e890a (patch)
tree05137d6b5623af3409c2f24be1c53a79c121db0b /epan
parentb7cff15f97835b20ed607c96330a487afc530b65 (diff)
Newlines in preference comments causes problems in reading the prefeerence file.
svn path=/trunk/; revision=17205
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index f3c10cdabb..595680d849 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -4289,12 +4289,12 @@ proto_register_ssl(void)
&ssl_desegment);
prefs_register_string_preference(ssl_module, "keys_list", "RSA keys list",
"comma separated list of private RSA keys used for SSL decryption; "
- "each list entry must be in the form of <ip>:<port>:<key_file_name>\n"
+ "each list entry must be in the form of <ip>:<port>:<key_file_name>"
"<key_file_name> is the local file name of the RSA private key used by the specified server\n",
(const char **)&ssl_keys_list);
prefs_register_string_preference(ssl_module, "ports_list", "SSL ports list",
"comma separated list of tcp ports numbers to be dissectes as SSL; "
- "each list entry must be in the form of <port>:<clear-text-port>\n"
+ "each list entry must be in the form of <port>:<clear-text-port>"
"<clear-text-port> is the port numbert associated with the protocol tunneled over SSL for this port\n",
(const char **)&ssl_ports_list);
}