Ethereal-dev: Re: [Ethereal-dev] Updates to NCP Dissector

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: Wed, 19 Feb 2003 13:49:16 -0800
On Wed, Feb 19, 2003 at 01:07:19PM -0700, Greg Morris wrote:
> The following fixes are included in this update.

Checked in, with a ";" removed from some

	if (XXX);
	{
		...
	}

code - GCC warned of a null body for the "if" statement, and it looked
as if it was intended to be

	if (XXX)
	{
		...
	}

(I think you're developing on Windows - should we be passing arguments
to the C compiler to get it to produce more warnings and, if we do so,
will we get swamped with bogus-but-unfixable warnings?)