aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/follow_ssl.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2010-06-25 22:09:34 +0000
committerGerald Combs <gerald@wireshark.org>2010-06-25 22:09:34 +0000
commit96558700c1b3128ce1540f598946fe7112c7954c (patch)
tree21b3565dc05d9d2d5afa4736e4ad007751dc7c10 /gtk/follow_ssl.c
parentca6d2031cd0932b2e3a5eaa54336713afdf1ac74 (diff)
UTF-8-ize a bunch more arrows. If IE6 on XP can render them then they
*must* be safe to use, right? svn path=/trunk/; revision=33326
Diffstat (limited to 'gtk/follow_ssl.c')
-rw-r--r--gtk/follow_ssl.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gtk/follow_ssl.c b/gtk/follow_ssl.c
index 03a66c0536..843db21e49 100644
--- a/gtk/follow_ssl.c
+++ b/gtk/follow_ssl.c
@@ -61,6 +61,7 @@
#include <gtk/font_utils.h>
#include "gtk/follow_ssl.h"
#include "gtk/follow_stream.h"
+#include "gtk/utf8_entities.h"
#ifdef SSL_PLUGIN
#include "packet-ssl-utils.h"
@@ -251,25 +252,25 @@ follow_ssl_stream_cb(GtkWidget * w, gpointer data _U_)
if(follow_info->client_port == stats.port[0]) {
server_to_client_string =
- g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+ g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
hostname0, port0,
hostname1, port1,
follow_info->bytes_written[0]);
client_to_server_string =
- g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+ g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
hostname1, port1,
hostname0, port0,
follow_info->bytes_written[1]);
} else {
server_to_client_string =
- g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+ g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
hostname1, port1,
hostname0, port0,
follow_info->bytes_written[0]);
client_to_server_string =
- g_strdup_printf("%s:%s --> %s:%s (%u bytes)",
+ g_strdup_printf("%s:%s " UTF8_RIGHTWARDS_ARROW " %s:%s (%u bytes)",
hostname0, port0,
hostname1, port1,
follow_info->bytes_written[1]);