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

Góra strony
Delete this message
Reply to this message
Autor: Jakob Hirsch
Data:  
Dla: S e r g e
CC: exim-dev
Temat: 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)