Hi Henry,

in jk_util.h we have:
#define jk_stat(a, b) stat(a, b)

in jk_map.c we have now:

        if (jk_stat(f, &statbuf) != -1)
            return JK_FALSE;

previously in 1.2.22 code we had:

        if ((rc = stat(f, &statbuf)) == -1)
            return JK_FALSE;

am I missing something, or is the logic now inverted?

Guen.




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to