diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-19 19:21:15 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-19 19:21:15 +0000 |
commit | 5adb2d031d81f2eddd8fb1d5a65cbd0050f392b4 (patch) | |
tree | 14ee546d753870856f30bb2f359bb071d7b34ba3 /epan | |
parent | 19235a85de5682b030be813ddb0e4a561d79482c (diff) | |
download | wireshark-5adb2d031d81f2eddd8fb1d5a65cbd0050f392b4.tar.gz wireshark-5adb2d031d81f2eddd8fb1d5a65cbd0050f392b4.tar.bz2 wireshark-5adb2d031d81f2eddd8fb1d5a65cbd0050f392b4.zip |
From Joerg Mayer: fix a typo in a comment.
svn path=/trunk/; revision=5707
Diffstat (limited to 'epan')
-rw-r--r-- | epan/proto.c | 4 |
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++; |