Ethereal-dev: Re: [Ethereal-dev] Undefined External bzero

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: Tue, 18 Jun 2002 13:19:35 -0700
On Tue, Jun 18, 2002 at 01:42:47PM -0600, Greg Morris wrote:
> packet-ieee80211.c
> packet-ieee80211.c(2590) : error C4013: 'bzero' undefined; assuming
> extern returning int

Well, I'm not sure why that's an error rather than a warning, but I've
checked in a change that

	1) includes Solomon Peachy's fix to do WEP decryption before
	   frame reassembly

and

	2) use the standard ANSI C routine "memset()", rather than the
	   BSDism "bzero()", there.

Change 2) should clear up the problem.

(Another item to add to the "Portability" section of
"doc/README.developer"....)