aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-06-19 19:21:15 +0000
committerGuy Harris <guy@alum.mit.edu>2002-06-19 19:21:15 +0000
commit5adb2d031d81f2eddd8fb1d5a65cbd0050f392b4 (patch)
tree14ee546d753870856f30bb2f359bb071d7b34ba3 /epan/proto.c
parent19235a85de5682b030be813ddb0e4a561d79482c (diff)
From Joerg Mayer: fix a typo in a comment.
svn path=/trunk/; revision=5707
Diffstat (limited to 'epan/proto.c')
-rw-r--r--epan/proto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/proto.c b/epan/proto.c
index ed32d85ba3..b337db2ec5 100644
--- a/epan/proto.c
+++ b/epan/proto.c
@@ -1,7 +1,7 @@
/* proto.c
* Routines for protocol tree
*
- * $Id: proto.c,v 1.69 2002/05/14 10:15:10 guy Exp $
+ * $Id: proto.c,v 1.70 2002/06/19 19:21:15 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2175,7 +2175,7 @@ proto_register_field_init(header_field_info *hfinfo, int parent)
default:
break;
}
- /* if this is a bitfield, compure bitshift */
+ /* if this is a bitfield, compute bitshift */
if (hfinfo->bitmask) {
while ((hfinfo->bitmask & (1 << hfinfo->bitshift)) == 0)
hfinfo->bitshift++;