diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-10 00:15:03 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-10 00:24:51 -0800 |
commit | 4bd5b7dacc404e6b733d9ab6744429c5027bb5e1 (patch) | |
tree | ffdf76686afbd17249255cce00e1ede134212821 /check-racy.c | |
parent | d048a96ee9bec968be0bdc9c43ffce61169545be (diff) | |
download | git-4bd5b7dacc404e6b733d9ab6744429c5027bb5e1.tar.gz |
ce_match_stat, run_diff_files: use symbolic constants for readability
ce_match_stat() can be told:
(1) to ignore CE_VALID bit (used under "assume unchanged" mode)
and perform the stat comparison anyway;
(2) not to perform the contents comparison for racily clean
entries and report mismatch of cached stat information;
using its "option" parameter. Give them symbolic constants.
Similarly, run_diff_files() can be told not to report anything
on removed paths. Also give it a symbolic constant for that.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'check-racy.c')
-rw-r--r-- | check-racy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-racy.c b/check-racy.c index d6a08b4a55..00d92a1663 100644 --- a/check-racy.c +++ b/check-racy.c @@ -18,7 +18,7 @@ int main(int ac, char **av) if (ce_match_stat(ce, &st, 0)) dirty++; - else if (ce_match_stat(ce, &st, 2)) + else if (ce_match_stat(ce, &st, CE_MATCH_RACY_IS_DIRTY)) racy++; else clean++; |