diff options
author | Brad Roberts <braddr@puremagic.com> | 2005-05-14 19:04:25 -0700 |
---|---|---|
committer | Petr Baudis <xpasky@machine.sinus.cz> | 2005-05-15 12:26:25 +0200 |
commit | 5d728c8411a092f80171f787b5409d98978690c7 (patch) | |
tree | 0e04912f5efbc654765ce9b7fba5d824ab74b6b9 /diff-cache.c | |
parent | 127cfd0d2f1db6ef690e01aafd1c660ea1c82499 (diff) | |
download | git-5d728c8411a092f80171f787b5409d98978690c7.tar.gz git-5d728c8411a092f80171f787b5409d98978690c7.tar.xz |
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 'diff-cache.c')
-rw-r--r-- | diff-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-cache.c b/diff-cache.c index 84527190f..afce9553f 100644 --- a/diff-cache.c +++ b/diff-cache.c @@ -33,7 +33,7 @@ static int get_stat_data(struct cache_entry *ce, unsigned char **sha1p, unsigned } return -1; } - changed = cache_match_stat(ce, &st); + changed = ce_match_stat(ce, &st); if (changed) { mode = create_ce_mode(st.st_mode); sha1 = no_sha1; |