aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gtp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-31 12:10:58 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-31 12:10:58 +0000
commit1dfcb47a99f74590a8c3ff5201f12a11828f567f (patch)
tree25d1ea16548893e9d912e42e706030035b267865 /packet-gtp.c
parent981ece4a85f640315baf30e99de314f43a1136b3 (diff)
No C++ comments in C code, please.
svn path=/trunk/; revision=4652
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 5067e14311..c48dfd667a 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.23 2002/01/31 10:11:32 guy Exp $
+ * $Id: packet-gtp.c,v 1.24 2002/01/31 12:10:58 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2490,7 +2490,7 @@ decode_gtp_rai(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
te = proto_tree_add_text(tree, tvb, offset, 1, val_to_str(GTP_EXT_RAI, gtp_val, "Unknown message"));
ext_tree_rai = proto_item_add_subtree(te, ett_gtp_rai);
-// tvb_memcpy (tvb, (guint8 *)&byte, offset + 1, 3);
+/* tvb_memcpy (tvb, (guint8 *)&byte, offset + 1, 3); */
byte[1] = tvb_get_guint8 (tvb, offset + 1);
byte[2] = tvb_get_guint8 (tvb, offset + 2);
byte[3] = tvb_get_guint8 (tvb, offset + 3);