On Fri, Nov 08, 2002 at 11:32:16AM -0800, Justin Ainsworth wrote: > Hello, > I just recently patched qmail-1.03 with the most recent patch, > and when I run "make setup check", I get the following error: > > --[snip]--
> --[snip]-- > > To get it to compile, I made a small change to maildir++.c > > I added: > > #include <stdlib.h> > > At the top of the file. Now it is compilling just fine, but I wasn't > sure if that was really the best thing to do, or if something else is > wacked. > No there is nothing else wacked, it is just so that I used NULL to compare with some pointers and forgot that in djb world you do not have NULL defined. Adding #include <stdlib.h> or #define NULL (void *)0 should solve the problem. The stuff is fixed and the next patch will not have this problem. -- :wq Claudio
