aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cigi.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-06 06:09:28 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-06 06:09:28 +0000
commit03fde33928aedae3dc9433976a01038e4600839d (patch)
treec77f69a98faad2f6473a53777437442bfbc7f487 /epan/dissectors/packet-cigi.c
parentea1014a1fa66573991e3a83dc4c940d1d01c56ce (diff)
Note what we have to be careful of before we start using Unicode in the
packet list or packet details. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16696 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-cigi.c')
-rw-r--r--epan/dissectors/packet-cigi.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/epan/dissectors/packet-cigi.c b/epan/dissectors/packet-cigi.c
index 6e12bebfc0..0e50b385f5 100644
--- a/epan/dissectors/packet-cigi.c
+++ b/epan/dissectors/packet-cigi.c
@@ -1951,7 +1951,14 @@ dissect_cigi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
dest_str = "IG";
}
- /* XXX - Use ⇒ (U+21D2) in place of => */
+ /*
+ * XXX - Use ⇒ (U+21D2) in place of , *IF* we can ensure that,
+ * for any form of output/display, we arrange that we map U+21D2 to
+ * "=>" if that form of output/display can't handle Unicode.
+ * XXX - how do we know whether, even if the form of output/display
+ * nominally handles Unicode, it has a Unicode font or font set that
+ * includes that character?
+ */
info_str = g_strdup_printf("%s => %s (%i bytes)", src_str, dest_str, length);
if (check_col(pinfo->cinfo, COL_INFO)) {