diff options
author | Junio C Hamano <junkio@cox.net> | 2007-04-01 22:14:40 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-05 15:07:16 -0700 |
commit | fd1c3bf0533c6cc7e44646d4e52d378d5b5a1631 (patch) | |
tree | d24a361e357c81331a3544c2a742bef56a382d62 /read-cache.c | |
parent | 7da3bf372cfcd25ea44164afb90c306836b62e23 (diff) | |
download | git-fd1c3bf0533c6cc7e44646d4e52d378d5b5a1631.tar.gz |
Rename add_file_to_index() to add_file_to_cache()
This function was not called "add_file_to_cache()" only because
an ancient program, update-cache, used that name as an internal
function name that does something slightly different. Now that
is gone, we can take over the better name.
The plan is to name all functions that operate on the default
index xxx_cache(). Later patches create a variant of them that
take an explicit parameter xxx_index(), and then turn
xxx_cache() functions into macros that use "the_index".
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'read-cache.c')
-rw-r--r-- | read-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/read-cache.c b/read-cache.c index 747b50a99a..a8f8a6b2b2 100644 --- a/read-cache.c +++ b/read-cache.c @@ -325,7 +325,7 @@ int remove_file_from_cache(const char *path) return 0; } -int add_file_to_index(const char *path, int verbose) +int add_file_to_cache(const char *path, int verbose) { int size, namelen; struct stat st; |