aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-06-27 11:06:40 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-06-27 11:06:40 +0000
commit6838ce28071a27bcfa447f453c6677531aeefc53 (patch)
tree73ef198ab7b2b04740d3cff726081a44b1e0f5ba /epan
parentfa7c5d4aac48b7693007af7b981cb204754a61a7 (diff)
remove a \n in the preference string to prevent it from creating a garbage/invalid preference file entry.
svn path=/trunk/; revision=14798
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-actrace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-actrace.c b/epan/dissectors/packet-actrace.c
index b27acc9fff..0dc8bef285 100644
--- a/epan/dissectors/packet-actrace.c
+++ b/epan/dissectors/packet-actrace.c
@@ -799,7 +799,7 @@ void proto_register_actrace(void)
prefs_register_uint_preference(actrace_module, "udp_port",
"AudioCodes Trunk Trace UDP port",
- "Set the UDP port for AudioCodes Trunk Traces.\n"
+ "Set the UDP port for AudioCodes Trunk Traces."
"Use http://x.x.x.x/TrunkTraces to enable the traces in the Blade",
10, &global_actrace_udp_port);
@@ -870,4 +870,4 @@ static gboolean is_actrace(tvbuff_t *tvb, gint offset)
return TRUE;
}
return FALSE;
-} \ No newline at end of file
+}