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

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Jakob Hirsch
Data:  
Para: S e r g e
CC: exim-dev
Asunto: 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)