X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=check-files.c;h=6fd69e79d6c253937498c553662ebe832a020449;hb=d6db01075b65da2b8584a0450619390893aae103;hp=bfd5590e047a6ee0f7d9db956cc489ffc23dcd5a;hpb=8ae0a8c514dc492de8aadf3ca6bb4ad55e33960e;p=git.git diff --git a/check-files.c b/check-files.c index bfd5590e..6fd69e79 100644 --- a/check-files.c +++ b/check-files.c @@ -31,7 +31,7 @@ static void check_file(const char *path) if (lstat(path, &st) < 0) die("lstat(%s): %s", path, strerror(errno)); - changed = cache_match_stat(ce, &st); + changed = ce_match_stat(ce, &st); if (changed) die("preparing to update file '%s' not uptodate in cache", path); }