aboutsummaryrefslogtreecommitdiffstats
path: root/packet-h1.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-03-02 07:38:02 +0000
committerGuy Harris <guy@alum.mit.edu>2000-03-02 07:38:02 +0000
commit15b367981a2c35d15c1fc85cc952ad760ba67f65 (patch)
treea034c7cd20c569f3e86416c5e4c8e765eb12c0e1 /packet-h1.c
parented51759ef2261e8461bbba5101c8522a3343a0fb (diff)
Get rid of C++-style comments, as they peeve some C compilers.
svn path=/trunk/; revision=1679
Diffstat (limited to 'packet-h1.c')
-rw-r--r--packet-h1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-h1.c b/packet-h1.c
index 2b0d161c49..a2858b4b15 100644
--- a/packet-h1.c
+++ b/packet-h1.c
@@ -2,7 +2,7 @@
* Routines for Sinec H1 packet disassembly
* Gerrit Gehnen <G.Gehnen@atrie.de>
*
- * $Id: packet-h1.c,v 1.1 2000/03/02 07:27:05 guy Exp $
+ * $Id: packet-h1.c,v 1.2 2000/03/02 07:38:02 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -232,10 +232,10 @@ dissect_h1 (const u_char * pd, int offset, frame_data * fd, proto_tree * tree)
}
break;
default:
- // TODO: Add Default Handler.
+ /* TODO: Add Default Handler. */
}
- position += pd[offset + position + 1]; // Goto next section
- } //..while
+ position += pd[offset + position + 1]; /* Goto next section */
+ } /* ..while */
dissect_data (pd, offset + pd[offset + 2], fd, tree);
}