Rename internal function "add_file_to_cache" in builtin-update-index.c

I'd like to consistently name all index-layer functions that
operate on the default index xxx_cache(), and this application
specific function interferes with the plan.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2007-04-01 22:07:26 -07:00
parent ec0cc70469
commit 81e1bc4768

View File

@ -60,7 +60,7 @@ static int mark_valid(const char *path)
return -1; return -1;
} }
static int add_file_to_cache(const char *path) static int process_file(const char *path)
{ {
int size, namelen, option, status; int size, namelen, option, status;
struct cache_entry *ce; struct cache_entry *ce;
@ -210,7 +210,7 @@ static void update_one(const char *path, const char *prefix, int prefix_length)
report("remove '%s'", path); report("remove '%s'", path);
goto free_return; goto free_return;
} }
if (add_file_to_cache(p)) if (process_file(p))
die("Unable to process file %s", path); die("Unable to process file %s", path);
report("add '%s'", path); report("add '%s'", path);
free_return: free_return: