aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-3g-a11.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-09-19 10:17:27 +0000
committerGuy Harris <guy@alum.mit.edu>2011-09-19 10:17:27 +0000
commit0bb00a2e6438f1182c41830474552eb849cde76c (patch)
tree647435481c158a0e293692fea177d8d8a81db76f /epan/dissectors/packet-3g-a11.c
parent5f854948d4ca528c7851ac32af403c3f9a5b4cfd (diff)
RFC 4282 says the NAI is UTF-8.
svn path=/trunk/; revision=39042
Diffstat (limited to 'epan/dissectors/packet-3g-a11.c')
-rw-r--r--epan/dissectors/packet-3g-a11.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/epan/dissectors/packet-3g-a11.c b/epan/dissectors/packet-3g-a11.c
index 5ec90df157..7eefd08c74 100644
--- a/epan/dissectors/packet-3g-a11.c
+++ b/epan/dissectors/packet-3g-a11.c
@@ -1445,13 +1445,8 @@ dissect_a11_extensions( tvbuff_t *tvb, int offset, proto_tree *tree)
if (ext_len == 0)
break;
/*
- * XXX - RFC 2486 speaks only of ASCII; we currently don't
- * have ENC_ASCII, and don't yet have infrastructure to
- * deal with it (by displaying all octets with the 8th bit
- * set as an "error" character). Dunno whether the 3GPP2
- * or IETF or anybody else extended the NAI to include
- * non-ASCII characters or, if they did, whether they
- * specify UTF-8 or some other encoding.
+ * RFC 2486 speaks only of ASCII; RFC 4282 expands that to
+ * UTF-8.
*/
proto_tree_add_item(ext_tree, hf_a11_next_nai, tvb, offset,
ext_len, ENC_UTF_8|ENC_BIG_ENDIAN);