Ethereal-dev: Re: [Ethereal-dev] updated packet-dcerpc.c

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

From: Guy Harris <guy@xxxxxxxxxx>
Date: Thu, 19 Apr 2001 16:41:43 -0700 (PDT)
> Here's a new version of packet-dcerpc.c.

Checked in - with changes to replace

	col_clear(pinfo->fd, COL_INFO);
	col_append_fstr(pinfo->fd, COL_INFO, ...);

with

	col_add_fstr(pinfo->fd, COL_INFO, ...);

as "col_append_{str,fstr}" are for use only when you're adding more
stuff to the end of what's already in the column - if you're overwriting
what's in the column, you use "col_set_str" or "col_add_{str,fstr}".