aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-06-19 15:53:03 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-06-19 15:53:03 +0000
commitf338c1627be9c1b2c324eec38df6ddbf932b6879 (patch)
treedeceb77733ae0b9c9c59aff9c4d5fb0cc204b76d /plugins
parent8e3b055a1a6162c7782344a0e77ff4ea57154fed (diff)
New rutine tvb_format_text_wsp() which will change "whiite space" characters to space
before output. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18519 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-rw-r--r--plugins/megaco/packet-megaco.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/megaco/packet-megaco.c b/plugins/megaco/packet-megaco.c
index e909c16e51..1adae63b39 100644
--- a/plugins/megaco/packet-megaco.c
+++ b/plugins/megaco/packet-megaco.c
@@ -2562,7 +2562,7 @@ static void tvb_raw_text_add(tvbuff_t *tvb, proto_tree *tree){
do {
linelen = tvb_find_line_end(tvb,tvb_linebegin,-1,&tvb_lineend,FALSE);
proto_tree_add_text(tree, tvb, tvb_linebegin, linelen,
- "%s", tvb_format_text(tvb,tvb_linebegin,
+ "%s", tvb_format_text_wsp(tvb,tvb_linebegin,
linelen));
tvb_linebegin = tvb_lineend;
} while ( tvb_lineend < tvb_len );