No C++ comments in C code, please.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 31 Jan 2002 12:10:58 +0000 (12:10 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 31 Jan 2002 12:10:58 +0000 (12:10 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4652 f5534014-38df-0310-8fa8-9805f1628bb7

packet-gtp.c

index 5067e14311cac065bad6c4034bab4b771cec3e9d..c48dfd667a580dcc376462451f015f9aa58c3ce8 100644 (file)
@@ -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);