aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gtp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-10-04 00:30:23 +0000
committerGuy Harris <guy@alum.mit.edu>2001-10-04 00:30:23 +0000
commitf52303ffc9a0d12894edca2af06cf064f46a2a91 (patch)
tree7c645a7c8cd3a16cee945cfc69a0870160708efc /packet-gtp.c
parent1f682d68f3649fa64a3df825cd06fa26cd39bf41 (diff)
Avoid using non-ASCII characters in labels in the protocol tree - some
compilers may not interpret them as the ISO 8859/1 characters they're intended to be, and the GUI toolkit or other software through which the text passes might not interpret them as such, either. svn path=/trunk/; revision=3992
Diffstat (limited to 'packet-gtp.c')
-rw-r--r--packet-gtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-gtp.c b/packet-gtp.c
index 6942baa74a..f4ae225cbc 100644
--- a/packet-gtp.c
+++ b/packet-gtp.c
@@ -4,7 +4,7 @@
* Copyright 2001, Michal Melerowicz <michal.melerowicz@nokia.com>
* Nicolas Balkota <balkota@mac.com>
*
- * $Id: packet-gtp.c,v 1.10 2001/09/27 10:01:07 guy Exp $
+ * $Id: packet-gtp.c,v 1.11 2001/10/04 00:25:57 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -4050,7 +4050,7 @@ decode_gtp_hdr_list(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
for(i=0 ; i<length ; i++) {
hdr = tvb_get_guint8(tvb, offset+2+i);
- proto_tree_add_text(ext_tree_hdr_list, tvb, offset+2+i, 1, "N°%u --> Extension Header Type value : %s (%u)", i+1, val_to_str(hdr, gtp_val, "Unknown Extension Header Type"), hdr);
+ proto_tree_add_text(ext_tree_hdr_list, tvb, offset+2+i, 1, "No. %u --> Extension Header Type value : %s (%u)", i+1, val_to_str(hdr, gtp_val, "Unknown Extension Header Type"), hdr);
}
return 2 + length;