Re: [exim-dev] [exim-cvs] cvs commit: exim/exim-src/src dkim…

Kezdőlap
Üzenet törlése
Válasz az üzenetre
Szerző: Jakob Hirsch
Dátum:  
Címzett: S e r g e
CC: exim-dev
Tárgy: Re: [exim-dev] [exim-cvs] cvs commit: exim/exim-src/src dkim.c mime.c
S e r g e, 2009-11-09 16:21:
> -      if (bytestate & 3 != 0)
> +      if (bytestate & (3 != 0))


um, no. You proably meant

      if ((bytestate & 3) != 0)