Re: [PATCH v2] netfilter: nf_nat_h323: fix logical-not-parentheses warning

From: Pablo Neira Ayuso
Date: Thu Aug 24 2017 - 12:50:15 EST


On Mon, Aug 14, 2017 at 10:36:03AM -0700, Nick Desaulniers wrote:
> Minor nit for the commit message that can get fixed up when being merged:
>
> On Fri, Aug 11, 2017 at 11:16 AM, Nick Desaulniers
> <ndesaulniers@xxxxxxxxxx> wrote:
>
> > if (x)
> > return
> > ...
> >
> > rather than:
> >
> > if (!x == 0)
>
> should remove the `!`, ex:
>
> if (x == 0)

Amended this here, and applied. Thanks!