summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-12-24 00:23:09 +0000
committerGuy Harris <guy@alum.mit.edu>2013-12-24 00:23:09 +0000
commitbd8aeb9054ac6ee0aa2d395a329d312a70c86ec6 (patch)
tree705d1d64616df9756da8b651110612d4777cbdda
parent0d7a48a8bfb2b9f954d0f6b37172bb28e0239a92 (diff)
downloadwireshark-bd8aeb9054ac6ee0aa2d395a329d312a70c86ec6.tar.gz
Update some comments.
svn path=/trunk/; revision=54429
-rw-r--r--epan/tvbuff.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/epan/tvbuff.c b/epan/tvbuff.c
index 199f290d62..57a5806c65 100644
--- a/epan/tvbuff.c
+++ b/epan/tvbuff.c
@@ -2162,10 +2162,6 @@ tvb_get_ucs_4_string(wmem_allocator_t *scope, tvbuff_t *tvb, const gint offset,
static const gunichar gsm_default_alphabet[GN_CHAR_ALPHABET_SIZE] = {
/* ETSI GSM 03.38, version 6.0.1, section 6.2.1; Default alphabet */
- /* Fixed to use unicode */
- /* Characters in hex position 10, [12 to 1a] and 24 are not present on
- latin1 charset, so we cannot reproduce on the screen, however they are
- greek symbol not present even on my Nokia */
'@', 0xa3, '$', 0xa5, 0xe8, 0xe9, 0xf9, 0xec,
0xf2, 0xc7, '\n', 0xd8, 0xf8, '\r', 0xc5, 0xe5,
@@ -2206,7 +2202,7 @@ char_def_alphabet_ext_decode(unsigned char value)
case 0x3e: return ']';
case 0x40: return '|';
case 0x65: return 0x20ac; /* euro */
- default: return '?'; /* invalid character */
+ default: return '?'; /* invalid character XXX use REPLACEMENT CHARACTER */
}
}