Ethereal-dev: Re: [Ethereal-dev] proto.c: line 1400 (proto_tree_add_uint): should not be re

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

From: Gilbert Ramirez <gram@xxxxxxxxxxxxxxx>
Date: Fri, 15 Feb 2002 09:48:04 -0600
On Fri, 15 Feb 2002 05:11:33 Guy Harris wrote:
> On Thu, Feb 14, 2002 at 10:43:35AM -0600, Gilbert Ramirez wrote:
> > but hf_ucp_parm_NT is an FT_STRING field, not a FT_UINT8 field.
> > Since there is a value_string for this field, vals_parm_NT, I am
> > guessing that hf_ucp_parm_NT should really be a FT_UINT8 type.
> > However, that value string is never used in the code.
> > 
> > I'm checking in the attached change, to make hf_ucp_parm_NT a
> > FT_UINT8 type, and for it to use vals_parm_NT.
> 
> ...and to change the
> 
> 	UcpHandleByte(hf_ucp_parm_NT);
> 
> call to
> 
> 	UcpHandleString(hf_ucp_parm_NT);
> 
> which I'm not sure you wanted to do.
> 

Oops. Thanks for following up.

--gilbert