Changeset 2476

Show
Ignore:
Timestamp:
01/27/07 11:05:58 (2 years ago)
Author:
dhozac
Message:

Actually check the mtime when it's not optional.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib_internal/unify.h

    r2475 r2476  
    5757#  define Unify_isUnifyable(LHS, RHS)           \ 
    5858    ((bool)(_Unify_isUnifyable(LHS, RHS)  &&    \ 
    59           (global_args->ignore_mtime ||               \ 
    60            (LHS)->st_mtime==(RHS)->st_mtime))) 
     59            (global_args->ignore_mtime ||     \ 
     60             (LHS)->st_mtime==(RHS)->st_mtime))) 
    6161#else 
    6262#  define Unify_isUnifyable(LHS, RHS)           \ 
    63         _Unify_isUnifyable(LHS, RHS) 
     63    ((bool)(_Unify_isUnifyable(LHS, RHS)  &&    \ 
     64            (LHS)->st_mtime==(RHS)->st_mtime)) 
    6465#endif 
    6566