[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

zsh-beta



Hi folks,

This block of code in Src/cond.c seems to be the initial issue with zsh-beta:

  1.

     #if defined(GET_ST_MTIME_NSEC) && defined(GET_ST_ATIME_NSEC)

  2.

             if (!(st = getstat(left)))

  3.

                 return 1;

  4.

             return (st->st_atime == st->st_mtime) ?

  5.

                     GET_ST_ATIME_NSEC(*st) > GET_ST_MTIME_NSEC(*st) :

  6.

                     st->st_atime > st->st_mtime;

  7.

     #else

  8.

             return !((st = getstat(left)) && st->st_atime <= st->st_mtime);

  9.

     #endif

Barry


Reply to: