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

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Jakob Hirsch
Ημερομηνία:  
Προς: S e r g e
Υ/ο: exim-dev
Αντικείμενο: 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)