aboutsummaryrefslogtreecommitdiffstats
path: root/check-files.c
diff options
context:
space:
mode:
authorBrad Roberts <braddr@puremagic.com>2005-05-14 19:04:25 -0700
committerPetr Baudis <xpasky@machine.sinus.cz>2005-05-15 12:26:25 +0200
commit5d728c8411a092f80171f787b5409d98978690c7 (patch)
tree0e04912f5efbc654765ce9b7fba5d824ab74b6b9 /check-files.c
parent127cfd0d2f1db6ef690e01aafd1c660ea1c82499 (diff)
downloadgit-5d728c8411a092f80171f787b5409d98978690c7.tar.gz
Rename cache_match_stat() to ce_match_stat()
Signed-off-by: Brad Roberts <braddr@puremagic.com> Signed-off-by: Petr Baudis <pasky@ucw.cz>
Diffstat (limited to 'check-files.c')
-rw-r--r--check-files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/check-files.c b/check-files.c
index bfd5590e04..6fd69e79d6 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);
}