Ethereal-dev: Re: [ethereal-dev] CDP and Etherloop

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

From: guy@xxxxxxxxxx (Guy Harris)
Date: Fri, 18 Dec 1998 17:15:07 -0800 (PST)
> changes have been made in the following files:

...and also to "packet-dns.c" - there's a change of

	memset (nameptr, 0, maxname);

to

	bzero (nameptr, maxname);

"memset()" is used elsewhere in Ethereal; does using it cause a problem
(e.g., not building on some platforms)?