Ethereal-dev: Re: [ethereal-dev] new release soon

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Gilbert Ramirez <gram@xxxxxxxxxx>
Date: Fri, 07 Apr 2000 05:07:05 -0500
On Thu, Apr 06, 2000 at 06:32:48AM +0100, Ben Fowler wrote:
> At 05:17 PM 4/6/00, Gilbert Ramirez wrote:
> >Because of the seriousness of the bug that crept into 0.8.5
> >(not being able to capture more than once in an Ethereal session),
> >I'll release 0.8.6 today. But I'll wait a few hours to see if anything
> >else rears its ugly head.
> >
> >--Gilbert
> 
> 
> I am working on an 'issue' that I have that the FT_BOOLEAN type is
> not working as I expect (the bitmask parameter seems to be ignored),
> but I don't know if there is an ugly head here.
> 
> Ben.

Yeah, that one wouldn't be an "ugly head issue", since that behavior
(bug? feature? :-) is old, not new.

In proto.c, proto_tree_set_uint() takes into account the bitmask.
proto_tree_set_boolean() does not.

The functions that then deal with numbers and bitmasks always
test hfinfo->bitshift, so if we were to set the bitmask in
proto_tree_set_boolean(), we might be lucky enough that it would just
automatically work. :)

--gilbert